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

Last change on this file since 742 was 742, checked in by pharms, 12 years ago
  • added further GUI element types
File size: 952 bytes
Line 
1// Module    : $RCSfile: JFCTree.java,v $
2// Version   : $Revision: 0.0 $  $Author: pharms $  $Date: 03.09.2012 $
3// Project   : quest-plugin-jfc
4// Creation  : 2012 by pharms
5// Copyright : Patrick Harms, 2012
6package de.ugoe.cs.quest.plugin.jfc.guimodel;
7
8import de.ugoe.cs.quest.eventcore.guimodel.ITree;
9
10/**
11 * <p>
12 * TODO comment
13 * </p>
14 *
15 * @version $Revision: $ $Date: 03.09.2012$
16 * @author 2012, last modified by $Author: pharms$
17 */
18public class JFCTree extends JFCGUIElement implements ITree {
19
20    /**  */
21    private static final long serialVersionUID = 1L;
22
23    /**
24     * <p>
25     * TODO: comment
26     * </p>
27     *
28     * @param specification
29     * @param parent
30     */
31    public JFCTree(JFCGUIElementSpec specification, JFCGUIElement parent) {
32        super(specification, parent);
33        // TODO Auto-generated constructor stub
34    }
35
36    @Override
37    protected String getElementDescriptor() {
38        return "Tree";
39    }
40}
Note: See TracBrowser for help on using the repository browser.