views:

299

answers:

1

Hey,

So I am developing an Azureus plugin in NetBeans. I was using Eclipse and everything was hunky-dorry but for GUI related reasons I needed to switch to NetBeans

The main class for my project is in an external JAR called Azerues2.jar. So I added the JAR it to the project's libraries. Then I go to the run configuration in order to set the main class but none of the classes from the JAR show up. So how can I get the classes to show up?

I tried manually entering the main class "org.gudy.azureus2.ui.swt.Main" but just got an error saying class not found.

Here is a link that might help: Plugin guide

I feel like the solution is a little, surreptitious check box hidden in the vales of obscurity, but who knows.

Any ideas?

Thanks

A: 

You just need to make sure the external jars are in the runtime classpath and to type in the main class. If the main class is not in src then it wont show up as an option

Zohar Jackson