source: trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc/guimodel/JFCShape.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.0 KB
Line 
1
2package de.ugoe.cs.quest.plugin.jfc.guimodel;
3
4import de.ugoe.cs.quest.eventcore.guimodel.IShape;
5
6/**
7 * <p>
8 * Class that represents shapes in JFC GUIs.
9 * </p>
10 *
11 * @version 1.0
12 * @author Patrick Harms
13 */
14public class JFCShape extends JFCGUIElement implements IShape {
15
16    /**
17     * <p>
18     * Id for object serialization.
19     * </p>
20     */
21    private static final long serialVersionUID = 1L;
22
23    /**
24     * <p>
25     * Constructor. Creates a new JFCShape.
26     * </p>
27     *
28     * @param specification
29     *            specification of created GUI element
30     * @param parent
31     *            parent of the created GUI element; null means that the element is a top-level
32     *            window
33     */
34    public JFCShape(JFCGUIElementSpec specification, JFCGUIElement parent) {
35        super(specification, parent);
36    }
37
38    /*
39     * (non-Javadoc)
40     *
41     * @see de.ugoe.cs.quest.plugin.jfc.guimodel.JFCGUIElement#getElementDescriptor()
42     */
43    @Override
44    protected String getElementDescriptor() {
45        return "Shape";
46    }
47
48}
Note: See TracBrowser for help on using the repository browser.