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: import java.awt.event.MouseListener;
10: import java.beans.PropertyChangeListener;
11:
12: /**
13: *
14: * @author lahvac
15: */
16: public class ImplementAbstractMethods4 extends AbstractClass2 {
17:
18: /** Creates a new instance of ImplementAbstractMethod1 */
19: public ImplementAbstractMethods4() {
20: }
21:
22: }
|