Ignore:
Timestamp:
07/26/13 09:35:22 (11 years ago)
Author:
pharms
Message:
  • added some Java Docs
Location:
trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/guimodel
Files:
12 edited

Legend:

Unmodified
Added
Removed
  • trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/guimodel/HTMLButton.java

    r1276 r1278  
    1919/** 
    2020 * <p> 
    21  *  
     21 * a representation for a button on a web page. 
    2222 * </p> 
    2323 *  
     
    2626public class HTMLButton extends HTMLPageElement implements IButton { 
    2727 
    28     /**  */ 
     28    /** 
     29     * <p> 
     30     * default serial version UID 
     31     * </p> 
     32     */ 
    2933    private static final long serialVersionUID = 1L; 
    3034 
    3135    /** 
    3236     * <p> 
    33      * TODO: comment 
     37     * initializes the button with its specification and its parent 
    3438     * </p> 
    3539     * 
    36      * @param specification 
    37      * @param parent 
     40     * @param specification the specification for the represented tag 
     41     * @param parent        the parent of the GUI element 
    3842     */ 
    3943    public HTMLButton(HTMLPageElementSpec specification, HTMLGUIElement parent) { 
     
    4145    } 
    4246 
    43     /* 
    44      * (non-Javadoc) 
    45      *  
     47    /* (non-Javadoc) 
    4648     * @see de.ugoe.cs.autoquest.plugin.html.guimodel.HTMLGUIElement#getElementDescriptor() 
    4749     */ 
  • trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/guimodel/HTMLCanvas.java

    r1012 r1278  
    1919/** 
    2020 * <p> 
    21  * TODO comment 
     21 * a representation for a canvas on a web page. 
    2222 * </p> 
    2323 *  
     
    2626public class HTMLCanvas extends HTMLPageElement implements ICanvas { 
    2727 
    28     /**  */ 
     28    /** 
     29     * <p> 
     30     * default serial version UID 
     31     * </p> 
     32     */ 
    2933    private static final long serialVersionUID = 1L; 
    3034 
    3135    /** 
    3236     * <p> 
    33      * TODO: comment 
     37     * initializes the canvas with its specification and its parent 
    3438     * </p> 
    3539     * 
    36      * @param specification 
    37      * @param parent 
     40     * @param specification the specification for the represented tag 
     41     * @param parent        the parent of the GUI element 
    3842     */ 
    3943    public HTMLCanvas(HTMLPageElementSpec specification, HTMLGUIElement parent) { 
     
    4145    } 
    4246 
    43     /* 
    44      * (non-Javadoc) 
    45      *  
     47    /* (non-Javadoc) 
    4648     * @see de.ugoe.cs.autoquest.plugin.html.guimodel.HTMLGUIElement#getElementDescriptor() 
    4749     */ 
  • trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/guimodel/HTMLCheckBox.java

    r1012 r1278  
    1919/** 
    2020 * <p> 
    21  * TODO comment 
     21 * a representation for a check box on a web page. 
    2222 * </p> 
    2323 *  
     
    2626public class HTMLCheckBox extends HTMLPageElement implements ICheckBox { 
    2727 
    28     /**  */ 
     28    /** 
     29     * <p> 
     30     * default serial version UID 
     31     * </p> 
     32     */ 
    2933    private static final long serialVersionUID = 1L; 
    3034 
    3135    /** 
    3236     * <p> 
    33      * TODO: comment 
     37     * initializes the check box with its specification and its parent 
    3438     * </p> 
    3539     * 
    36      * @param specification 
    37      * @param parent 
     40     * @param specification the specification for the represented tag 
     41     * @param parent        the parent of the GUI element 
    3842     */ 
    3943    public HTMLCheckBox(HTMLPageElementSpec specification, HTMLGUIElement parent) { 
     
    4145    } 
    4246 
    43     /* 
    44      * (non-Javadoc) 
    45      *  
     47    /* (non-Javadoc) 
    4648     * @see de.ugoe.cs.autoquest.plugin.html.guimodel.HTMLGUIElement#getElementDescriptor() 
    4749     */ 
  • trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/guimodel/HTMLComboBox.java

    r1012 r1278  
    1919/** 
    2020 * <p> 
    21  * TODO comment 
     21 * a representation for a combo box on a web page. 
    2222 * </p> 
    2323 *  
     
    2626public class HTMLComboBox extends HTMLPageElement implements IComboBox { 
    2727 
    28     /**  */ 
     28    /** 
     29     * <p> 
     30     * default serial version UID 
     31     * </p> 
     32     */ 
    2933    private static final long serialVersionUID = 1L; 
    3034 
    3135    /** 
    3236     * <p> 
    33      * TODO: comment 
     37     * initializes the combo box with its specification and its parent 
    3438     * </p> 
    3539     * 
    36      * @param specification 
    37      * @param parent 
     40     * @param specification the specification for the represented tag 
     41     * @param parent        the parent of the GUI element 
    3842     */ 
    3943    public HTMLComboBox(HTMLPageElementSpec specification, HTMLGUIElement parent) { 
     
    4145    } 
    4246 
    43     /* 
    44      * (non-Javadoc) 
    45      *  
     47    /* (non-Javadoc) 
    4648     * @see de.ugoe.cs.autoquest.plugin.html.guimodel.HTMLGUIElement#getElementDescriptor() 
    4749     */ 
  • trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/guimodel/HTMLImage.java

    r976 r1278  
    1919/** 
    2020 * <p> 
    21  * TODO comment 
     21 * a representation for an image on a web page. 
    2222 * </p> 
    2323 *  
     
    2626public class HTMLImage extends HTMLPageElement implements IImage { 
    2727 
    28     /**  */ 
     28    /** 
     29     * <p> 
     30     * default serial version UID 
     31     * </p> 
     32     */ 
    2933    private static final long serialVersionUID = 1L; 
    3034 
    3135    /** 
    3236     * <p> 
    33      * TODO: comment 
     37     * initializes the image with its specification and its parent 
    3438     * </p> 
    3539     * 
    36      * @param specification 
    37      * @param parent 
     40     * @param specification the specification for the represented tag 
     41     * @param parent        the parent of the GUI element 
    3842     */ 
    3943    public HTMLImage(HTMLPageElementSpec specification, HTMLGUIElement parent) { 
     
    4145    } 
    4246 
    43     /* 
    44      * (non-Javadoc) 
    45      *  
     47    /* (non-Javadoc) 
    4648     * @see de.ugoe.cs.autoquest.plugin.html.guimodel.HTMLGUIElement#getElementDescriptor() 
    4749     */ 
  • trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/guimodel/HTMLLink.java

    r961 r1278  
    1919/** 
    2020 * <p> 
    21  * TODO comment 
     21 * a representation for a link on a web page. 
    2222 * </p> 
    2323 *  
     
    2626public class HTMLLink extends HTMLPageElement implements IButton { 
    2727 
    28     /**  */ 
     28    /** 
     29     * <p> 
     30     * default serial version UID 
     31     * </p> 
     32     */ 
    2933    private static final long serialVersionUID = 1L; 
    3034 
    3135    /** 
    3236     * <p> 
    33      * TODO: comment 
     37     * initializes the link with its specification and its parent 
    3438     * </p> 
    3539     * 
    36      * @param specification 
    37      * @param parent 
     40     * @param specification the specification for the represented tag 
     41     * @param parent        the parent of the GUI element 
    3842     */ 
    3943    public HTMLLink(HTMLPageElementSpec specification, HTMLGUIElement parent) { 
     
    4145    } 
    4246 
    43     /* 
    44      * (non-Javadoc) 
    45      *  
     47    /* (non-Javadoc) 
    4648     * @see de.ugoe.cs.autoquest.plugin.html.guimodel.HTMLGUIElement#getElementDescriptor() 
    4749     */ 
  • trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/guimodel/HTMLNonGUITag.java

    r1223 r1278  
    1919/** 
    2020 * <p> 
    21  * TODO comment 
     21 * A representation for HTML tags, which are no real GUI elements a user can interact with. Examples 
     22 * are param or formatting tags 
    2223 * </p> 
    2324 *  
     
    2627public class HTMLNonGUITag extends HTMLPageElement implements IGUIElement { 
    2728 
    28     /**  */ 
     29    /** 
     30     * <p> 
     31     * default serial version UID 
     32     * </p> 
     33     */ 
    2934    private static final long serialVersionUID = 1L; 
    3035 
    3136    /** 
    3237     * <p> 
    33      * TODO: comment 
     38     * initializes the dummy representation with its specification and its parent 
    3439     * </p> 
    3540     * 
    36      * @param specification 
    37      * @param parent 
     41     * @param specification the specification for the represented tag 
     42     * @param parent        the parent of the GUI element 
    3843     */ 
    3944    public HTMLNonGUITag(HTMLPageElementSpec specification, HTMLGUIElement parent) { 
     
    4146    } 
    4247 
    43     /* 
    44      * (non-Javadoc) 
    45      *  
     48    /* (non-Javadoc) 
    4649     * @see de.ugoe.cs.autoquest.plugin.html.guimodel.HTMLGUIElement#getElementDescriptor() 
    4750     */ 
  • trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/guimodel/HTMLPanel.java

    r961 r1278  
    1919/** 
    2020 * <p> 
    21  * TODO comment 
     21 * a representation for a panel on a web page. 
    2222 * </p> 
    2323 *  
     
    2626public class HTMLPanel extends HTMLPageElement implements IPanel { 
    2727 
    28     /**  */ 
     28    /** 
     29     * <p> 
     30     * default serial version UID 
     31     * </p> 
     32     */ 
    2933    private static final long serialVersionUID = 1L; 
    3034 
    3135    /** 
    3236     * <p> 
    33      * TODO: comment 
     37     * initializes the panel with its specification and its parent 
    3438     * </p> 
    3539     * 
    36      * @param specification 
    37      * @param parent 
     40     * @param specification the specification for the represented tag 
     41     * @param parent        the parent of the GUI element 
    3842     */ 
    3943    public HTMLPanel(HTMLPageElementSpec specification, HTMLGUIElement parent) { 
     
    4145    } 
    4246 
    43     /* 
    44      * (non-Javadoc) 
    45      *  
     47    /* (non-Javadoc) 
    4648     * @see de.ugoe.cs.autoquest.plugin.html.guimodel.HTMLGUIElement#getElementDescriptor() 
    4749     */ 
  • trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/guimodel/HTMLRadioButton.java

    r1012 r1278  
    1919/** 
    2020 * <p> 
    21  * TODO comment 
     21 * a representation for a radio button on a web page. 
    2222 * </p> 
    2323 *  
     
    2626public class HTMLRadioButton extends HTMLPageElement implements IRadioButton { 
    2727 
    28     /**  */ 
     28    /** 
     29     * <p> 
     30     * default serial version UID 
     31     * </p> 
     32     */ 
    2933    private static final long serialVersionUID = 1L; 
    3034 
    3135    /** 
    3236     * <p> 
    33      * TODO: comment 
     37     * initializes the radio button with its specification and its parent 
    3438     * </p> 
    3539     * 
    36      * @param specification 
    37      * @param parent 
     40     * @param specification the specification for the represented tag 
     41     * @param parent        the parent of the GUI element 
    3842     */ 
    3943    public HTMLRadioButton(HTMLPageElementSpec specification, HTMLGUIElement parent) { 
     
    4145    } 
    4246 
    43     /* 
    44      * (non-Javadoc) 
    45      *  
     47    /* (non-Javadoc) 
    4648     * @see de.ugoe.cs.autoquest.plugin.html.guimodel.HTMLGUIElement#getElementDescriptor() 
    4749     */ 
  • trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/guimodel/HTMLText.java

    r976 r1278  
    1919/** 
    2020 * <p> 
    21  * TODO comment 
     21 * a representation for a text on a web page. 
    2222 * </p> 
    2323 *  
     
    2626public class HTMLText extends HTMLPageElement implements IText { 
    2727 
    28     /**  */ 
     28    /** 
     29     * <p> 
     30     * default serial version UID 
     31     * </p> 
     32     */ 
    2933    private static final long serialVersionUID = 1L; 
    3034 
    3135    /** 
    3236     * <p> 
    33      * TODO: comment 
     37     * initializes the text with its specification and its parent 
    3438     * </p> 
    3539     * 
    36      * @param specification 
    37      * @param parent 
     40     * @param specification the specification for the represented tag 
     41     * @param parent        the parent of the GUI element 
    3842     */ 
    3943    public HTMLText(HTMLPageElementSpec specification, HTMLGUIElement parent) { 
     
    4145    } 
    4246 
    43     /* 
    44      * (non-Javadoc) 
    45      *  
     47    /* (non-Javadoc) 
    4648     * @see de.ugoe.cs.autoquest.plugin.html.guimodel.HTMLGUIElement#getElementDescriptor() 
    4749     */ 
  • trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/guimodel/HTMLTextArea.java

    r961 r1278  
    1919/** 
    2020 * <p> 
    21  * TODO comment 
     21 * a representation for a text area on a web page. 
    2222 * </p> 
    2323 *  
     
    2626public class HTMLTextArea extends HTMLPageElement implements ITextArea { 
    2727 
    28     /**  */ 
     28    /** 
     29     * <p> 
     30     * default serial version UID 
     31     * </p> 
     32     */ 
    2933    private static final long serialVersionUID = 1L; 
    3034 
    3135    /** 
    3236     * <p> 
    33      * TODO: comment 
     37     * initializes the text area with its specification and its parent 
    3438     * </p> 
    3539     * 
    36      * @param specification 
    37      * @param parent 
     40     * @param specification the specification for the represented tag 
     41     * @param parent        the parent of the GUI element 
    3842     */ 
    3943    public HTMLTextArea(HTMLPageElementSpec specification, HTMLGUIElement parent) { 
     
    4145    } 
    4246 
    43     /* 
    44      * (non-Javadoc) 
    45      *  
     47    /* (non-Javadoc) 
    4648     * @see de.ugoe.cs.autoquest.plugin.html.guimodel.HTMLGUIElement#getElementDescriptor() 
    4749     */ 
  • trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/guimodel/HTMLTextField.java

    r1012 r1278  
    1919/** 
    2020 * <p> 
    21  * TODO comment 
     21 * a representation for a text field on a web page. 
    2222 * </p> 
    2323 *  
     
    2626public class HTMLTextField extends HTMLPageElement implements ITextField { 
    2727 
    28     /**  */ 
     28    /** 
     29     * <p> 
     30     * default serial version UID 
     31     * </p> 
     32     */ 
    2933    private static final long serialVersionUID = 1L; 
    3034 
    3135    /** 
    3236     * <p> 
    33      * TODO: comment 
     37     * initializes the text field with its specification and its parent 
    3438     * </p> 
    3539     * 
    36      * @param specification 
    37      * @param parent 
     40     * @param specification the specification for the represented tag 
     41     * @param parent        the parent of the GUI element 
    3842     */ 
    3943    public HTMLTextField(HTMLPageElementSpec specification, HTMLGUIElement parent) { 
     
    4145    } 
    4246 
    43     /* 
    44      * (non-Javadoc) 
    45      *  
     47    /* (non-Javadoc) 
    4648     * @see de.ugoe.cs.autoquest.plugin.html.guimodel.HTMLGUIElement#getElementDescriptor() 
    4749     */ 
Note: See TracChangeset for help on using the changeset viewer.