This page is no longer maintained — Please continue to the home page at www.scala-lang.org

Adding Scala Nature

1 reply
fantastic_ray
Joined: 2009-04-03,
User offline. Last seen 42 years 45 weeks ago.

Hey guys,
I'm writing a small plugin to add Scala Nature to a Java project, I'm pretty
much trying to do the same thing the Scala plugin does in the
scala.tools.eclipse.ToggleScalaNatureAction.scala class:

private void addScalaNature(IProject project)
{
try {
IProjectDescription description = project.getDescription();
String[] natures = description.getNatureIds();
String[] newNatures = new String[natures.length + 1];
System.arraycopy(natures, 0, newNatures, 1, natures.length);
newNatures[0] = "org.eclipse.jdt.core.scalabuilder";
for(String str: newNatures)
{
System.out.println(str);
}
description.setNatureIds(newNatures);
project.setDescription(description, null);
//project.touch(null);
} catch (CoreException e) {
// Something went wrong
}

}

But my code doesnt seem to add Scala Nature, the old nature remains... Can
someone please tell me whats wrong?

Thank you.

milessabin
Joined: 2008-08-11,
User offline. Last seen 33 weeks 3 days ago.
Re: Adding Scala Nature

On Mon, Oct 5, 2009 at 7:59 AM, fantastic_ray wrote:
> I'm writing a small plugin to add Scala Nature to a Java project, I'm pretty
> much trying to do the same thing the Scala plugin does in the
> scala.tools.eclipse.ToggleScalaNatureAction.scala class:
>
> private void addScalaNature(IProject project)

> But my code doesnt seem to add Scala Nature, the old nature remains... Can
> someone please tell me whats wrong?

I can see a couple of problems: first, you appear to be using the
Scala builder ID as the nature ID, and you're not removing any of the
existing natures, so whatever else happens "the old nature remains"
should be true.

It might also be helpful to report any caught CoreExceptions rather
than silently discarding them?

Can you let us know what you're working on?

Cheers,

Miles

Copyright © 2012 École Polytechnique Fédérale de Lausanne (EPFL), Lausanne, Switzerland