Index: /trunk/quest-plugin-jfc/data/guimappings/guimapping-argouml.txt
===================================================================
--- /trunk/quest-plugin-jfc/data/guimappings/guimapping-argouml.txt	(revision 636)
+++ /trunk/quest-plugin-jfc/data/guimappings/guimapping-argouml.txt	(revision 637)
@@ -20,4 +20,4 @@
 org.argouml.ui.explorer.DnDExplorerTree = de.ugoe.cs.quest.plugin.jfc.guimodel.JFCGUIElement
 org.argouml.ui.NavigatorPane = de.ugoe.cs.quest.plugin.jfc.guimodel.JFCGUIElement
-org.argouml.ui.explorer.PerspectiveComboBox = de.ugoe.cs.quest.plugin.jfc.guimodel.JFCGUIElement
+org.argouml.ui.explorer.PerspectiveComboBox = de.ugoe.cs.quest.plugin.jfc.guimodel.JFCComboBox
 org.argouml.ui.ArgoJMenu = de.ugoe.cs.quest.plugin.jfc.guimodel.JFCGUIElement
Index: /trunk/quest-plugin-jfc/data/guimappings/guimapping-swing.txt
===================================================================
--- /trunk/quest-plugin-jfc/data/guimappings/guimapping-swing.txt	(revision 636)
+++ /trunk/quest-plugin-jfc/data/guimappings/guimapping-swing.txt	(revision 637)
@@ -16,4 +16,4 @@
 sun.swing.FilePane$3 = de.ugoe.cs.quest.plugin.jfc.guimodel.JFCGUIElement
 javax.swing.plaf.metal.MetalComboBoxButton = de.ugoe.cs.quest.plugin.jfc.guimodel.JFCGUIElement
-javax.swing.JComboBox = de.ugoe.cs.quest.plugin.jfc.guimodel.JFCGUIElement
+javax.swing.JComboBox = de.ugoe.cs.quest.plugin.jfc.guimodel.JFCComboBox
 javax.swing.JButton = de.ugoe.cs.quest.plugin.jfc.guimodel.JFCButton
Index: /trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc/guimodel/JFCComboBox.java
===================================================================
--- /trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc/guimodel/JFCComboBox.java	(revision 637)
+++ /trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc/guimodel/JFCComboBox.java	(revision 637)
@@ -0,0 +1,40 @@
+// Module    : $RCSfile: JavaPanel.java,v $
+// Version   : $Revision: 0.0 $  $Author: patrick $  $Date: 13.05.2012 $
+// Project   : JavaInteractionParser
+// Creation  : 2012 by patrick
+// Copyright : Patrick Harms, 2012
+
+package de.ugoe.cs.quest.plugin.jfc.guimodel;
+
+import de.ugoe.cs.quest.eventcore.guimodel.IComboBox;
+
+/**
+ * TODO comment
+ * 
+ * @version $Revision: $ $Date: 13.05.2012$
+ * @author 2012, last modified by $Author: patrick$
+ */
+public class JFCComboBox extends JFCGUIElement implements IComboBox {
+
+    /**  */
+    private static final long serialVersionUID = 1L;
+
+    /**
+     * TODO: comment
+     * 
+     * @param name
+     * @param type
+     * @param icon
+     * @param index
+     * @param hashCode
+     */
+    public JFCComboBox(JFCGUIElementSpec specification, JFCGUIElement parent) {
+        super(specification, parent);
+    }
+
+    @Override
+    protected String getElementDescriptor() {
+        return "ComboBox";
+    }
+
+}
