I want to run a specific .java file (class), but Eclipse does not work.
I tried to follow the instructions here -> eclipse how to run another class
... but my Run As menu item never contains a Java Project.
I tried to access the menu after right-clicking on the .java panel and the tab itself, as well as from the name and .java name in the Explorer class, but of course it does not matter. The only option I have ever received is Run Configurations.
(and yes, my .java has a "main" method.)
import com.jsyn.JSyn; public class SuperSimpleSounds { public static void main() { [...]
What, in fact, is necessary in order to be able to run a separate class (a separate .java file)?
java eclipse
AM
source share