01: package org.enhydra.jawe; 02: 03: /** 04: * Interface for classes which will be used as a choice button. 05: * 06: * @author Sasa Bojanic 07: */ 08: import javax.swing.JButton; 09: 10: public abstract class ChoiceButton extends JButton { 11: 12: public abstract Class getChoiceType(); 13: 14: }