01: /*
02: * InnerOutter.java
03: *
04: * Created on December 13, 2000, 5:30 PM
05: */
06:
07: package org.netbeans.test.editor.completion;
08:
09: /**
10: *
11: * @author jlahoda
12: * @version
13: */
14: public class InnerOutter extends Object {
15:
16: public class Innerer {
17:
18: public class Innerest {
19: public int test() {
20:Innerer.this .
21: }
22: }
23:
24: public native int yyy();
25:
26: void te() {
27:
28: }
29: }
30:
31: /** Creates new InnerOutter */
32: public InnerOutter() {
33: }
34:
35: public native int xxx();
36:
37: }
|