package de.ugoe.cs.quest.plugin.jfc.guimodel; import de.ugoe.cs.quest.eventcore.guimodel.IPanel; /** * TODO comment * * @version $Revision: $ $Date: 13.05.2012$ * @author 2012, last modified by $Author: patrick$ */ public class JFCPanel extends JFCGUIElement implements IPanel { /** */ private static final long serialVersionUID = 1L; /** * TODO: comment * * @param name * @param type * @param icon * @param index * @param hashCode */ public JFCPanel(JFCGUIElementSpec specification, JFCGUIElement parent) { super(specification, parent); } @Override protected String getElementDescriptor() { return "Panel"; } }