01: /*
02: * ImplementAbstractMethod1.java
03: *
04: * Created on March 12, 2005, 7:22 PM
05: */
06:
07: package org.netbeans.test.java.hints;
08:
09: /**
10: *
11: * @author lahvac
12: */
13: public class ImplementAbstractMethods2 {
14:
15: /** Creates a new instance of ImplementAbstractMethod1 */
16: public ImplementAbstractMethods2() {
17: new Runnable();
18: }
19:
20: }
|