01: package pulluppkg;
02:
03: import java.io.Serializable;
04:
05: public class PullUpClass extends PullUpSuperClass implements
06: Serializable {
07:
08: public String field;
09:
10: public void method() {
11: //method body
12: System.out.println("Hello");
13: }
14:
15: public class InnerClass {
16: //class body
17: public void method() {
18:
19: }
20: }
21:
22: public void existing() {
23:
24: }
25:
26: private void localyReferenced() {
27:
28: }
29:
30: private void reference() {
31: localyReferenced();
32: }
33: }
|