Index: trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc/guimodel/JFCCheckBox.java
===================================================================
--- trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc/guimodel/JFCCheckBox.java	(revision 742)
+++ trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc/guimodel/JFCCheckBox.java	(revision 742)
@@ -0,0 +1,39 @@
+// Module    : $RCSfile: JFCCheckBox.java,v $
+// Version   : $Revision: 0.0 $  $Author: pharms $  $Date: 03.09.2012 $
+// Project   : quest-plugin-jfc
+// Creation  : 2012 by pharms
+// Copyright : Patrick Harms, 2012
+package de.ugoe.cs.quest.plugin.jfc.guimodel;
+
+import de.ugoe.cs.quest.eventcore.guimodel.ICheckBox;
+
+/**
+ * <p>
+ * TODO comment
+ * </p>
+ * 
+ * @version $Revision: $ $Date: 03.09.2012$
+ * @author 2012, last modified by $Author: pharms$
+ */
+public class JFCCheckBox extends JFCGUIElement implements ICheckBox {
+
+    /**  */
+    private static final long serialVersionUID = 1L;
+
+    /**
+     * <p>
+     * TODO: comment
+     * </p>
+     *
+     * @param specification
+     * @param parent
+     */
+    public JFCCheckBox(JFCGUIElementSpec specification, JFCGUIElement parent) {
+        super(specification, parent);
+    }
+
+    @Override
+    protected String getElementDescriptor() {
+        return "CheckBox";
+    }
+}
Index: trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc/guimodel/JFCListBox.java
===================================================================
--- trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc/guimodel/JFCListBox.java	(revision 742)
+++ trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc/guimodel/JFCListBox.java	(revision 742)
@@ -0,0 +1,39 @@
+// Module    : $RCSfile: JFCListBox.java,v $
+// Version   : $Revision: 0.0 $  $Author: pharms $  $Date: 03.09.2012 $
+// Project   : quest-plugin-jfc
+// Creation  : 2012 by pharms
+// Copyright : Patrick Harms, 2012
+package de.ugoe.cs.quest.plugin.jfc.guimodel;
+
+import de.ugoe.cs.quest.eventcore.guimodel.IListBox;
+
+/**
+ * <p>
+ * TODO comment
+ * </p>
+ * 
+ * @version $Revision: $ $Date: 03.09.2012$
+ * @author 2012, last modified by $Author: pharms$
+ */
+public class JFCListBox extends JFCGUIElement implements IListBox {
+
+    /**  */
+    private static final long serialVersionUID = 1L;
+
+    /**
+     * <p>
+     * TODO: comment
+     * </p>
+     *
+     * @param specification
+     * @param parent
+     */
+    public JFCListBox(JFCGUIElementSpec specification, JFCGUIElement parent) {
+        super(specification, parent);
+    }
+
+    @Override
+    protected String getElementDescriptor() {
+        return "List";
+    }
+}
Index: trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc/guimodel/JFCRadioButton.java
===================================================================
--- trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc/guimodel/JFCRadioButton.java	(revision 742)
+++ trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc/guimodel/JFCRadioButton.java	(revision 742)
@@ -0,0 +1,39 @@
+// Module    : $RCSfile: JFCRadioButton.java,v $
+// Version   : $Revision: 0.0 $  $Author: pharms $  $Date: 03.09.2012 $
+// Project   : quest-plugin-jfc
+// Creation  : 2012 by pharms
+// Copyright : Patrick Harms, 2012
+package de.ugoe.cs.quest.plugin.jfc.guimodel;
+
+import de.ugoe.cs.quest.eventcore.guimodel.IRadioButton;
+
+/**
+ * <p>
+ * TODO comment
+ * </p>
+ * 
+ * @version $Revision: $ $Date: 03.09.2012$
+ * @author 2012, last modified by $Author: pharms$
+ */
+public class JFCRadioButton extends JFCGUIElement implements IRadioButton {
+
+    /**  */
+    private static final long serialVersionUID = 1L;
+
+    /**
+     * <p>
+     * TODO: comment
+     * </p>
+     *
+     * @param specification
+     * @param parent
+     */
+    public JFCRadioButton(JFCGUIElementSpec specification, JFCGUIElement parent) {
+        super(specification, parent);
+    }
+
+    @Override
+    protected String getElementDescriptor() {
+        return "RadioButton";
+    }
+}
Index: trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc/guimodel/JFCTable.java
===================================================================
--- trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc/guimodel/JFCTable.java	(revision 742)
+++ trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc/guimodel/JFCTable.java	(revision 742)
@@ -0,0 +1,39 @@
+// Module    : $RCSfile: JFCTable.java,v $
+// Version   : $Revision: 0.0 $  $Author: pharms $  $Date: 03.09.2012 $
+// Project   : quest-plugin-jfc
+// Creation  : 2012 by pharms
+// Copyright : Patrick Harms, 2012
+package de.ugoe.cs.quest.plugin.jfc.guimodel;
+
+import de.ugoe.cs.quest.eventcore.guimodel.ITable;
+
+/**
+ * <p>
+ * TODO comment
+ * </p>
+ * 
+ * @version $Revision: $ $Date: 03.09.2012$
+ * @author 2012, last modified by $Author: pharms$
+ */
+public class JFCTable extends JFCGUIElement implements ITable {
+
+    /**  */
+    private static final long serialVersionUID = 1L;
+
+    /**
+     * <p>
+     * TODO: comment
+     * </p>
+     *
+     * @param specification
+     * @param parent
+     */
+    public JFCTable(JFCGUIElementSpec specification, JFCGUIElement parent) {
+        super(specification, parent);
+    }
+
+    @Override
+    protected String getElementDescriptor() {
+        return "Table";
+    }
+}
Index: trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc/guimodel/JFCTextArea.java
===================================================================
--- trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc/guimodel/JFCTextArea.java	(revision 742)
+++ trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc/guimodel/JFCTextArea.java	(revision 742)
@@ -0,0 +1,33 @@
+package de.ugoe.cs.quest.plugin.jfc.guimodel;
+
+import de.ugoe.cs.quest.eventcore.guimodel.ITextField;
+
+/**
+ * TODO comment
+ * 
+ * @version $Revision: $ $Date: 13.05.2012$
+ * @author 2012, last modified by $Author: patrick$
+ */
+public class JFCTextArea extends JFCGUIElement implements ITextField {
+
+    /**  */
+    private static final long serialVersionUID = 1L;
+
+    /**
+     * TODO: comment
+     * 
+     * @param name
+     * @param type
+     * @param icon
+     * @param index
+     * @param hashCode
+     */
+    public JFCTextArea(JFCGUIElementSpec specification, JFCGUIElement parent) {
+        super(specification, parent);
+    }
+
+    @Override
+    protected String getElementDescriptor() {
+        return "TextArea";
+    }
+}
Index: trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc/guimodel/JFCTree.java
===================================================================
--- trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc/guimodel/JFCTree.java	(revision 742)
+++ trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc/guimodel/JFCTree.java	(revision 742)
@@ -0,0 +1,40 @@
+// Module    : $RCSfile: JFCTree.java,v $
+// Version   : $Revision: 0.0 $  $Author: pharms $  $Date: 03.09.2012 $
+// Project   : quest-plugin-jfc
+// Creation  : 2012 by pharms
+// Copyright : Patrick Harms, 2012
+package de.ugoe.cs.quest.plugin.jfc.guimodel;
+
+import de.ugoe.cs.quest.eventcore.guimodel.ITree;
+
+/**
+ * <p>
+ * TODO comment
+ * </p>
+ * 
+ * @version $Revision: $ $Date: 03.09.2012$
+ * @author 2012, last modified by $Author: pharms$
+ */
+public class JFCTree extends JFCGUIElement implements ITree {
+
+    /**  */
+    private static final long serialVersionUID = 1L;
+
+    /**
+     * <p>
+     * TODO: comment
+     * </p>
+     *
+     * @param specification
+     * @param parent
+     */
+    public JFCTree(JFCGUIElementSpec specification, JFCGUIElement parent) {
+        super(specification, parent);
+        // TODO Auto-generated constructor stub
+    }
+
+    @Override
+    protected String getElementDescriptor() {
+        return "Tree";
+    }
+}
