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

Last change on this file since 835 was 835, checked in by sherbold, 12 years ago
  • code documentation and clean-up
File size: 1.2 KB
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
6
7package de.ugoe.cs.quest.plugin.jfc.guimodel;
8
9import de.ugoe.cs.quest.eventcore.guimodel.ITree;
10
11/**
12 * <p>
13 * Class that represents trees in JFC GUIs.
14 * </p>
15 *
16 * @version 1.0
17 * @author Patrick Harms
18 */
19public class JFCTree extends JFCGUIElement implements ITree {
20
21    /**
22     * <p>
23     * Id for object serialization.
24     * </p>
25     */
26    private static final long serialVersionUID = 1L;
27
28    /**
29     * <p>
30     * Constructor. Creates a new JFCTree.
31     * </p>
32     *
33     * @param specification
34     *            specification of created GUI element
35     * @param parent
36     *            parent of the created GUI element; null means that the element is a top-level
37     *            window
38     */
39    public JFCTree(JFCGUIElementSpec specification, JFCGUIElement parent) {
40        super(specification, parent);
41    }
42
43    /*
44     * (non-Javadoc)
45     *
46     * @see de.ugoe.cs.quest.plugin.jfc.guimodel.JFCGUIElement#getElementDescriptor()
47     */
48    @Override
49    protected String getElementDescriptor() {
50        return "Tree";
51    }
52}
Note: See TracBrowser for help on using the repository browser.