diff options
Diffstat (limited to 'ajde/testdata/SecurityManagerTest/src/HelloWorld.java')
-rw-r--r-- | ajde/testdata/SecurityManagerTest/src/HelloWorld.java | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/ajde/testdata/SecurityManagerTest/src/HelloWorld.java b/ajde/testdata/SecurityManagerTest/src/HelloWorld.java new file mode 100644 index 000000000..fe981e7e6 --- /dev/null +++ b/ajde/testdata/SecurityManagerTest/src/HelloWorld.java @@ -0,0 +1,24 @@ +/* + * Created on 28-Sep-2004 + * + * TODO To change the template for this generated file go to + * Window - Preferences - Java - Code Style - Code Templates + */ + +/** + * @author websterm + * + * TODO To change the template for this generated type comment go to + * Window - Preferences - Java - Code Style - Code Templates + */ +public class HelloWorld { + + public static void println () { + System.out.println("Hello World!"); + } + + public static void main(String[] args) { + println(); +// System.getProperty("foo"); + } +} |