source: trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc/guimodel/JFCTabbedPane.java @ 605

Last change on this file since 605 was 605, checked in by pharms, 12 years ago
  • added reference to parent nodes to GUI elements
File size: 1.1 KB
Line 
1// Module    : $RCSfile: JavaPanel.java,v $
2// Version   : $Revision: 0.0 $  $Author: patrick $  $Date: 13.05.2012 $
3// Project   : JavaInteractionParser
4// Creation  : 2012 by patrick
5// Copyright : Patrick Harms, 2012
6
7package de.ugoe.cs.quest.plugin.jfc.guimodel;
8
9import de.ugoe.cs.quest.eventcore.guimodel.ITabbedPane;
10
11/**
12 * TODO comment
13 *
14 * @version $Revision: $ $Date: 13.05.2012$
15 * @author 2012, last modified by $Author: patrick$
16 */
17public class JFCTabbedPane extends JFCGUIElement implements ITabbedPane {
18
19    /**  */
20    private static final long serialVersionUID = 1L;
21
22    /**
23     * TODO: comment
24     *
25     * @param name
26     * @param type
27     * @param icon
28     * @param index
29     * @param hashCode
30     */
31    public JFCTabbedPane(JFCGUIElementSpec specification, JFCGUIElement parent) {
32        super(specification, parent);
33    }
34
35    /*
36     * (non-Javadoc)
37     *
38     * @see java.lang.Object#toString()
39     */
40    @Override
41    public String toString() {
42        return "TabbedPane(" + super.getName() + ", " + super.getElementHash() + ")";
43    }
44
45}
Note: See TracBrowser for help on using the repository browser.