01: /*
02: *
03: *
04: *
05: *
06: *
07: *
08: */
09:
10: package org.netbeans.test.java.navigation.MembersViewTest;
11:
12: import javax.swing.table.DefaultTableModel;
13:
14: /**
15: *
16: *
17: */
18: public class SuperClass extends DefaultTableModel implements Runnable {
19:
20: /**
21: * public ctor
22: */
23: public SuperClass() {
24: Integer i;
25:
26: }
27:
28: /**
29: * public method
30: */
31: public void run() {
32: throw new UnsupportedOperationException("Not supported yet.");
33: }
34:
35: /**
36: * package private inner class
37: */
38: class Inner {
39:
40: }
41:
42: /**
43: * private field
44: */
45: private String field;
46:
47: /**
48: * protected field
49: */
50: protected int field2;
51:
52: /**
53: * package private enum
54: * containt 3 constants, privat ctor (implicit) and two static methods(implicit)
55: */
56: enum Color {
57: R, G, B
58: };
59:
60: }
|