Index: trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/guimodel/HTMLButton.java
===================================================================
--- trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/guimodel/HTMLButton.java	(revision 1277)
+++ trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/guimodel/HTMLButton.java	(revision 1278)
@@ -19,5 +19,5 @@
 /**
  * <p>
- * 
+ * a representation for a button on a web page.
  * </p>
  * 
@@ -26,14 +26,18 @@
 public class HTMLButton extends HTMLPageElement implements IButton {
 
-    /**  */
+    /**
+     * <p>
+     * default serial version UID
+     * </p>
+     */
     private static final long serialVersionUID = 1L;
 
     /**
      * <p>
-     * TODO: comment
+     * initializes the button with its specification and its parent
      * </p>
      *
-     * @param specification
-     * @param parent
+     * @param specification the specification for the represented tag
+     * @param parent        the parent of the GUI element
      */
     public HTMLButton(HTMLPageElementSpec specification, HTMLGUIElement parent) {
@@ -41,7 +45,5 @@
     }
 
-    /*
-     * (non-Javadoc)
-     * 
+    /* (non-Javadoc)
      * @see de.ugoe.cs.autoquest.plugin.html.guimodel.HTMLGUIElement#getElementDescriptor()
      */
Index: trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/guimodel/HTMLCanvas.java
===================================================================
--- trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/guimodel/HTMLCanvas.java	(revision 1277)
+++ trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/guimodel/HTMLCanvas.java	(revision 1278)
@@ -19,5 +19,5 @@
 /**
  * <p>
- * TODO comment
+ * a representation for a canvas on a web page.
  * </p>
  * 
@@ -26,14 +26,18 @@
 public class HTMLCanvas extends HTMLPageElement implements ICanvas {
 
-    /**  */
+    /**
+     * <p>
+     * default serial version UID
+     * </p>
+     */
     private static final long serialVersionUID = 1L;
 
     /**
      * <p>
-     * TODO: comment
+     * initializes the canvas with its specification and its parent
      * </p>
      *
-     * @param specification
-     * @param parent
+     * @param specification the specification for the represented tag
+     * @param parent        the parent of the GUI element
      */
     public HTMLCanvas(HTMLPageElementSpec specification, HTMLGUIElement parent) {
@@ -41,7 +45,5 @@
     }
 
-    /*
-     * (non-Javadoc)
-     * 
+    /* (non-Javadoc)
      * @see de.ugoe.cs.autoquest.plugin.html.guimodel.HTMLGUIElement#getElementDescriptor()
      */
Index: trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/guimodel/HTMLCheckBox.java
===================================================================
--- trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/guimodel/HTMLCheckBox.java	(revision 1277)
+++ trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/guimodel/HTMLCheckBox.java	(revision 1278)
@@ -19,5 +19,5 @@
 /**
  * <p>
- * TODO comment
+ * a representation for a check box on a web page.
  * </p>
  * 
@@ -26,14 +26,18 @@
 public class HTMLCheckBox extends HTMLPageElement implements ICheckBox {
 
-    /**  */
+    /**
+     * <p>
+     * default serial version UID
+     * </p>
+     */
     private static final long serialVersionUID = 1L;
 
     /**
      * <p>
-     * TODO: comment
+     * initializes the check box with its specification and its parent
      * </p>
      *
-     * @param specification
-     * @param parent
+     * @param specification the specification for the represented tag
+     * @param parent        the parent of the GUI element
      */
     public HTMLCheckBox(HTMLPageElementSpec specification, HTMLGUIElement parent) {
@@ -41,7 +45,5 @@
     }
 
-    /*
-     * (non-Javadoc)
-     * 
+    /* (non-Javadoc)
      * @see de.ugoe.cs.autoquest.plugin.html.guimodel.HTMLGUIElement#getElementDescriptor()
      */
Index: trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/guimodel/HTMLComboBox.java
===================================================================
--- trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/guimodel/HTMLComboBox.java	(revision 1277)
+++ trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/guimodel/HTMLComboBox.java	(revision 1278)
@@ -19,5 +19,5 @@
 /**
  * <p>
- * TODO comment
+ * a representation for a combo box on a web page.
  * </p>
  * 
@@ -26,14 +26,18 @@
 public class HTMLComboBox extends HTMLPageElement implements IComboBox {
 
-    /**  */
+    /**
+     * <p>
+     * default serial version UID
+     * </p>
+     */
     private static final long serialVersionUID = 1L;
 
     /**
      * <p>
-     * TODO: comment
+     * initializes the combo box with its specification and its parent
      * </p>
      *
-     * @param specification
-     * @param parent
+     * @param specification the specification for the represented tag
+     * @param parent        the parent of the GUI element
      */
     public HTMLComboBox(HTMLPageElementSpec specification, HTMLGUIElement parent) {
@@ -41,7 +45,5 @@
     }
 
-    /*
-     * (non-Javadoc)
-     * 
+    /* (non-Javadoc)
      * @see de.ugoe.cs.autoquest.plugin.html.guimodel.HTMLGUIElement#getElementDescriptor()
      */
Index: trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/guimodel/HTMLImage.java
===================================================================
--- trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/guimodel/HTMLImage.java	(revision 1277)
+++ trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/guimodel/HTMLImage.java	(revision 1278)
@@ -19,5 +19,5 @@
 /**
  * <p>
- * TODO comment
+ * a representation for an image on a web page.
  * </p>
  * 
@@ -26,14 +26,18 @@
 public class HTMLImage extends HTMLPageElement implements IImage {
 
-    /**  */
+    /**
+     * <p>
+     * default serial version UID
+     * </p>
+     */
     private static final long serialVersionUID = 1L;
 
     /**
      * <p>
-     * TODO: comment
+     * initializes the image with its specification and its parent
      * </p>
      *
-     * @param specification
-     * @param parent
+     * @param specification the specification for the represented tag
+     * @param parent        the parent of the GUI element
      */
     public HTMLImage(HTMLPageElementSpec specification, HTMLGUIElement parent) {
@@ -41,7 +45,5 @@
     }
 
-    /*
-     * (non-Javadoc)
-     * 
+    /* (non-Javadoc)
      * @see de.ugoe.cs.autoquest.plugin.html.guimodel.HTMLGUIElement#getElementDescriptor()
      */
Index: trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/guimodel/HTMLLink.java
===================================================================
--- trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/guimodel/HTMLLink.java	(revision 1277)
+++ trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/guimodel/HTMLLink.java	(revision 1278)
@@ -19,5 +19,5 @@
 /**
  * <p>
- * TODO comment
+ * a representation for a link on a web page.
  * </p>
  * 
@@ -26,14 +26,18 @@
 public class HTMLLink extends HTMLPageElement implements IButton {
 
-    /**  */
+    /**
+     * <p>
+     * default serial version UID
+     * </p>
+     */
     private static final long serialVersionUID = 1L;
 
     /**
      * <p>
-     * TODO: comment
+     * initializes the link with its specification and its parent
      * </p>
      *
-     * @param specification
-     * @param parent
+     * @param specification the specification for the represented tag
+     * @param parent        the parent of the GUI element
      */
     public HTMLLink(HTMLPageElementSpec specification, HTMLGUIElement parent) {
@@ -41,7 +45,5 @@
     }
 
-    /*
-     * (non-Javadoc)
-     * 
+    /* (non-Javadoc)
      * @see de.ugoe.cs.autoquest.plugin.html.guimodel.HTMLGUIElement#getElementDescriptor()
      */
Index: trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/guimodel/HTMLNonGUITag.java
===================================================================
--- trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/guimodel/HTMLNonGUITag.java	(revision 1277)
+++ trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/guimodel/HTMLNonGUITag.java	(revision 1278)
@@ -19,5 +19,6 @@
 /**
  * <p>
- * TODO comment
+ * A representation for HTML tags, which are no real GUI elements a user can interact with. Examples
+ * are param or formatting tags
  * </p>
  * 
@@ -26,14 +27,18 @@
 public class HTMLNonGUITag extends HTMLPageElement implements IGUIElement {
 
-    /**  */
+    /**
+     * <p>
+     * default serial version UID
+     * </p>
+     */
     private static final long serialVersionUID = 1L;
 
     /**
      * <p>
-     * TODO: comment
+     * initializes the dummy representation with its specification and its parent
      * </p>
      *
-     * @param specification
-     * @param parent
+     * @param specification the specification for the represented tag
+     * @param parent        the parent of the GUI element
      */
     public HTMLNonGUITag(HTMLPageElementSpec specification, HTMLGUIElement parent) {
@@ -41,7 +46,5 @@
     }
 
-    /*
-     * (non-Javadoc)
-     * 
+    /* (non-Javadoc)
      * @see de.ugoe.cs.autoquest.plugin.html.guimodel.HTMLGUIElement#getElementDescriptor()
      */
Index: trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/guimodel/HTMLPanel.java
===================================================================
--- trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/guimodel/HTMLPanel.java	(revision 1277)
+++ trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/guimodel/HTMLPanel.java	(revision 1278)
@@ -19,5 +19,5 @@
 /**
  * <p>
- * TODO comment
+ * a representation for a panel on a web page.
  * </p>
  * 
@@ -26,14 +26,18 @@
 public class HTMLPanel extends HTMLPageElement implements IPanel {
 
-    /**  */
+    /**
+     * <p>
+     * default serial version UID
+     * </p>
+     */
     private static final long serialVersionUID = 1L;
 
     /**
      * <p>
-     * TODO: comment
+     * initializes the panel with its specification and its parent
      * </p>
      *
-     * @param specification
-     * @param parent
+     * @param specification the specification for the represented tag
+     * @param parent        the parent of the GUI element
      */
     public HTMLPanel(HTMLPageElementSpec specification, HTMLGUIElement parent) {
@@ -41,7 +45,5 @@
     }
 
-    /*
-     * (non-Javadoc)
-     * 
+    /* (non-Javadoc)
      * @see de.ugoe.cs.autoquest.plugin.html.guimodel.HTMLGUIElement#getElementDescriptor()
      */
Index: trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/guimodel/HTMLRadioButton.java
===================================================================
--- trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/guimodel/HTMLRadioButton.java	(revision 1277)
+++ trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/guimodel/HTMLRadioButton.java	(revision 1278)
@@ -19,5 +19,5 @@
 /**
  * <p>
- * TODO comment
+ * a representation for a radio button on a web page.
  * </p>
  * 
@@ -26,14 +26,18 @@
 public class HTMLRadioButton extends HTMLPageElement implements IRadioButton {
 
-    /**  */
+    /**
+     * <p>
+     * default serial version UID
+     * </p>
+     */
     private static final long serialVersionUID = 1L;
 
     /**
      * <p>
-     * TODO: comment
+     * initializes the radio button with its specification and its parent
      * </p>
      *
-     * @param specification
-     * @param parent
+     * @param specification the specification for the represented tag
+     * @param parent        the parent of the GUI element
      */
     public HTMLRadioButton(HTMLPageElementSpec specification, HTMLGUIElement parent) {
@@ -41,7 +45,5 @@
     }
 
-    /*
-     * (non-Javadoc)
-     * 
+    /* (non-Javadoc)
      * @see de.ugoe.cs.autoquest.plugin.html.guimodel.HTMLGUIElement#getElementDescriptor()
      */
Index: trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/guimodel/HTMLText.java
===================================================================
--- trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/guimodel/HTMLText.java	(revision 1277)
+++ trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/guimodel/HTMLText.java	(revision 1278)
@@ -19,5 +19,5 @@
 /**
  * <p>
- * TODO comment
+ * a representation for a text on a web page.
  * </p>
  * 
@@ -26,14 +26,18 @@
 public class HTMLText extends HTMLPageElement implements IText {
 
-    /**  */
+    /**
+     * <p>
+     * default serial version UID
+     * </p>
+     */
     private static final long serialVersionUID = 1L;
 
     /**
      * <p>
-     * TODO: comment
+     * initializes the text with its specification and its parent
      * </p>
      *
-     * @param specification
-     * @param parent
+     * @param specification the specification for the represented tag
+     * @param parent        the parent of the GUI element
      */
     public HTMLText(HTMLPageElementSpec specification, HTMLGUIElement parent) {
@@ -41,7 +45,5 @@
     }
 
-    /*
-     * (non-Javadoc)
-     * 
+    /* (non-Javadoc)
      * @see de.ugoe.cs.autoquest.plugin.html.guimodel.HTMLGUIElement#getElementDescriptor()
      */
Index: trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/guimodel/HTMLTextArea.java
===================================================================
--- trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/guimodel/HTMLTextArea.java	(revision 1277)
+++ trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/guimodel/HTMLTextArea.java	(revision 1278)
@@ -19,5 +19,5 @@
 /**
  * <p>
- * TODO comment
+ * a representation for a text area on a web page.
  * </p>
  * 
@@ -26,14 +26,18 @@
 public class HTMLTextArea extends HTMLPageElement implements ITextArea {
 
-    /**  */
+    /**
+     * <p>
+     * default serial version UID
+     * </p>
+     */
     private static final long serialVersionUID = 1L;
 
     /**
      * <p>
-     * TODO: comment
+     * initializes the text area with its specification and its parent
      * </p>
      *
-     * @param specification
-     * @param parent
+     * @param specification the specification for the represented tag
+     * @param parent        the parent of the GUI element
      */
     public HTMLTextArea(HTMLPageElementSpec specification, HTMLGUIElement parent) {
@@ -41,7 +45,5 @@
     }
 
-    /*
-     * (non-Javadoc)
-     * 
+    /* (non-Javadoc)
      * @see de.ugoe.cs.autoquest.plugin.html.guimodel.HTMLGUIElement#getElementDescriptor()
      */
Index: trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/guimodel/HTMLTextField.java
===================================================================
--- trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/guimodel/HTMLTextField.java	(revision 1277)
+++ trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/guimodel/HTMLTextField.java	(revision 1278)
@@ -19,5 +19,5 @@
 /**
  * <p>
- * TODO comment
+ * a representation for a text field on a web page.
  * </p>
  * 
@@ -26,14 +26,18 @@
 public class HTMLTextField extends HTMLPageElement implements ITextField {
 
-    /**  */
+    /**
+     * <p>
+     * default serial version UID
+     * </p>
+     */
     private static final long serialVersionUID = 1L;
 
     /**
      * <p>
-     * TODO: comment
+     * initializes the text field with its specification and its parent
      * </p>
      *
-     * @param specification
-     * @param parent
+     * @param specification the specification for the represented tag
+     * @param parent        the parent of the GUI element
      */
     public HTMLTextField(HTMLPageElementSpec specification, HTMLGUIElement parent) {
@@ -41,7 +45,5 @@
     }
 
-    /*
-     * (non-Javadoc)
-     * 
+    /* (non-Javadoc)
      * @see de.ugoe.cs.autoquest.plugin.html.guimodel.HTMLGUIElement#getElementDescriptor()
      */
