Netbeans project in Eclipse

I am a Java beginner. I have only developed two Java desktop applications and I am using Eclipse as IDE. Right now I wanted to work on this project https://nbjfuguesupport.dev.java.net/ All the code is in Netbeans. I was able to import all the libraries that are used in the source files in eclipse and I have no errors showing up in the code in Eclipse. The problem is I don't know how to run this code from eclipse. I don't know which class the main method has.

Using google I found out that Netbeans uses org.netbeans.core.startup.Main.main to start projects, but I cannot find this in their libraries. Does anyone know which .jar this class comes with the netbeans 5.5 files. ??

Sincerely.

PS I have to use Eclipse because I have a team of 3 people who have only used Eclipse in the past and we need this code to help us on a similar college project.

+2


source to share


1 answer


You can find the core.jar file containing the main class under:

C: \ Program Files \ NetBeans 5.5 \ platform10 \ core \



You can just include this in your Java Eclipse build path.

+1


source







All Articles