01: /*
02: * Main.java
03: *
04: * Created on January 18, 2007, 9:51 AM
05: *
06: * To change this template, choose Tools | Template Manager
07: * and open the template in the editor.
08: */
09:
10: package defaultpkg;
11:
12: import java.util.List;
13:
14: /**
15: *
16: * @author jp159440
17: */
18: public class Main {
19:
20: /** Creates a new instance of Main */
21: public Main() {
22: }
23:
24: public void method(Main m) {
25: List<Main> l;
26: }
27:
28: public static Main getInstance() {
29: return new Main();
30: }
31:
32: /**
33: * @param args the command line arguments
34: */
35: public static void main(String[] args) {
36: Main m = new Main();
37: }
38:
39: }
|