source: trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc/guimodel/JFCRadioButton.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: 946 bytes
Line 
1// Module    : $RCSfile: JFCRadioButton.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.IRadioButton;
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 JFCRadioButton extends JFCGUIElement implements IRadioButton {
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 JFCRadioButton(JFCGUIElementSpec specification, JFCGUIElement parent) {
32        super(specification, parent);
33    }
34
35    @Override
36    protected String getElementDescriptor() {
37        return "RadioButton";
38    }
39}
Note: See TracBrowser for help on using the repository browser.