Antwrap 0.6.0 → 0.7.0

Sign up to get free protection for your applications and to get access to all the features.
File without changes
Binary file
@@ -1,19 +0,0 @@
1
- /**
2
- * antwrap
3
- *
4
- * Copyright Caleb Powell 2007
5
- *
6
- * Licensed under the LGPL, see the file COPYING in the distribution
7
- */
8
-
9
- package parent;
10
-
11
- /**
12
- * Created by IntelliJ IDEA.
13
- * User: caleb
14
- * Date: Dec 30, 2006
15
- * Time: 3:08:17 PM
16
- * To change this template use File | Settings | File Templates.
17
- */
18
- public class FooBarParent {
19
- }
@@ -1,26 +0,0 @@
1
- /**
2
- * antwrap
3
- *
4
- * Copyright Caleb Powell 2007
5
- *
6
- * Licensed under the LGPL, see the file COPYING in the distribution
7
- */
8
- package foo.bar;
9
-
10
- import parent.FooBarParent;
11
-
12
- public class FooBar extends FooBarParent {
13
-
14
- public FooBar(){
15
- }
16
-
17
- public static void main(String[] args){
18
- System.out.println("foo.FooBar.main");
19
- System.out.println("The FooBar class has been run with the following arguments:");
20
- for (int i = 0; i < args.length; i++) {
21
- System.out.println("arg = " + args[i]);
22
- }
23
- System.out.println("Antwrap JVM Arg: " + System.getProperty("antwrap"));
24
- System.exit(0);
25
- }
26
- }
@@ -1,7 +0,0 @@
1
- package foo.bar.baz;
2
-
3
- public class FooBarBaz{
4
-
5
- public FooBarBaz(){
6
- }
7
- }