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