// Module : $RCSfile: JavaPanel.java,v $ // Version : $Revision: 0.0 $ $Author: patrick $ $Date: 13.05.2012 $ // Project : JavaInteractionParser // Creation : 2012 by patrick // Copyright : Patrick Harms, 2012 package de.ugoe.cs.quest.plugin.jfc.guimodel; import de.ugoe.cs.quest.eventcore.guimodel.IComboBox; /** * TODO comment * * @version $Revision: $ $Date: 13.05.2012$ * @author 2012, last modified by $Author: patrick$ */ public class JFCComboBox extends JFCGUIElement implements IComboBox { /** */ private static final long serialVersionUID = 1L; /** * TODO: comment * * @param name * @param type * @param icon * @param index * @param hashCode */ public JFCComboBox(JFCGUIElementSpec specification, JFCGUIElement parent) { super(specification, parent); } @Override protected String getElementDescriptor() { return "ComboBox"; } }