OK so I am working in Netbeans, I have the plugin installed, and I am using 0.9.
The problem is that when I open the samples folder in Netbeans to look at all the projects, the samples folder has the red icon with an exclamation mark saying that it "Contains files with errors", so I open the samples folder and the projects with problems are: CommandLine, SocketTest, SoundSample, and TimeTest. The main class within all these projects also has the red icon with an exclamation mark saying "Error parsing file." I think that the problem is that Netbeans is confusing the methods from the standard jdk and the NXJ API.
For example in the CommandLine class the first line is "import java.io.*;" later on in the class this is used: "f.exec();", f is a File object, now what I presume to be the problem is that in the standard jdk 7 api(what I'm using) the class File doesn't have an exec() method, but the NXJ API does, so Netbeans is having a problem finding which one the code is referring to, but it is using the standard jdk as default thus giving me an error.
Any help on solving this reference problem would be greatly appreciated.
Thanks
