From: SourceForge.net <no...@so...> - 2010-03-15 16:18:47
|
Feature Requests item #2970724, was opened at 2010-03-15 11:18 Message generated for change (Tracker Item Submitted) made by mgricken You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438938&aid=2970724&group_id=44253 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: User interface Group: None Status: Open Priority: 5 Private: No Submitted By: Mathias Ricken (mgricken) Assigned to: Nobody/Anonymous (nobody) Summary: Simplify Running ACM Java Programs Initial Comment: We should make it as simple as possible to run ACM Java Task Force programs. Other IDEs can run ACM Java Task Force programs that just look like this //HelloWorldConsole.java import acm.program.*; public class HelloWorldConsole extends ConsoleProgram { public void run( ) { println("Hello World"); } } DrJava needs a main method: //HelloWorldConsole.java import acm.program.*; public class HelloWorldConsole extends ConsoleProgram { public void run( ) { println("Hello World"); } } public static void main(String[ ] args) { new HelloWorldConsole( ).start(args); } } ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438938&aid=2970724&group_id=44253 |