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