source: trunk/autoquest-plugin-jfc/src/main/java/de/ugoe/cs/autoquest/plugin/jfc/guimodel/JFCTextArea.java @ 922

Last change on this file since 922 was 922, checked in by sherbold, 12 years ago
  • renaming of packages from de.ugoe.cs.quest to de.ugoe.cs.autoquest
File size: 1.1 KB
RevLine 
[835]1
[922]2package de.ugoe.cs.autoquest.plugin.jfc.guimodel;
[742]3
[922]4import de.ugoe.cs.autoquest.eventcore.guimodel.ITextField;
[742]5
6/**
[835]7 * <p>
8 * Class that represents text areas in JFC GUIs.
9 * </p>
[742]10 *
[835]11 * @version 1.0
12 * @author Patrick Harms
[742]13 */
14public class JFCTextArea extends JFCGUIElement implements ITextField {
15
[835]16    /**
17     * <p>
18     * Id for object serialization.
19     * </p>
20     */
[742]21    private static final long serialVersionUID = 1L;
22
23    /**
[835]24     * <p>
25     * Constructor. Creates a new JFCTextArea.
26     * </p>
[742]27     *
[835]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
[742]33     */
34    public JFCTextArea(JFCGUIElementSpec specification, JFCGUIElement parent) {
35        super(specification, parent);
36    }
37
[835]38    /*
39     * (non-Javadoc)
40     *
[922]41     * @see de.ugoe.cs.autoquest.plugin.jfc.guimodel.JFCGUIElement#getElementDescriptor()
[835]42     */
[742]43    @Override
44    protected String getElementDescriptor() {
45        return "TextArea";
46    }
47}
Note: See TracBrowser for help on using the repository browser.