- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
Adding Scala Nature
Mon, 2009-10-05, 07:59
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.
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