01: package org.netbeans.test.java.hints.pkg; 02: 03: import javax.swing.JButton; 04: 05: /** 06: * @author leon chiver 07: */ 08: public interface ImplementAbstractMethods7Usee1 { 09: 10: String doStuff(); 11: 12: void createStuff(); 13: 14: int resolveStuff(JButton button); 15: 16: }