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

Last change on this file since 637 was 637, checked in by pharms, 12 years ago
  • added a JFCComboBox
File size: 950 bytes
Line 
1// Module    : $RCSfile: JavaPanel.java,v $
2// Version   : $Revision: 0.0 $  $Author: patrick $  $Date: 13.05.2012 $
3// Project   : JavaInteractionParser
4// Creation  : 2012 by patrick
5// Copyright : Patrick Harms, 2012
6
7package de.ugoe.cs.quest.plugin.jfc.guimodel;
8
9import de.ugoe.cs.quest.eventcore.guimodel.IComboBox;
10
11/**
12 * TODO comment
13 *
14 * @version $Revision: $ $Date: 13.05.2012$
15 * @author 2012, last modified by $Author: patrick$
16 */
17public class JFCComboBox extends JFCGUIElement implements IComboBox {
18
19    /**  */
20    private static final long serialVersionUID = 1L;
21
22    /**
23     * TODO: comment
24     *
25     * @param name
26     * @param type
27     * @param icon
28     * @param index
29     * @param hashCode
30     */
31    public JFCComboBox(JFCGUIElementSpec specification, JFCGUIElement parent) {
32        super(specification, parent);
33    }
34
35    @Override
36    protected String getElementDescriptor() {
37        return "ComboBox";
38    }
39
40}
Note: See TracBrowser for help on using the repository browser.