01: /*
02: * AbstractClass.java
03: *
04: * Created on March 12, 2005, 7:22 PM
05: */
06:
07: package org.netbeans.test.java.hints;
08:
09: import java.io.IOException;
10: import javax.swing.text.BadLocationException;
11:
12: /**
13: *
14: * @author lahvac
15: */
16: public abstract class CreateLocalVariable1 {
17:
18: /** Creates a new instance of AbstractClass */
19: public CreateLocalVariable1() {
20: }
21:
22: public void test() {
23: foo = "bar";
24: }
25:
26: }
|