Changeset 1278
- Timestamp:
- 07/26/13 09:35:22 (11 years ago)
- 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 19 19 /** 20 20 * <p> 21 * 21 * a representation for a button on a web page. 22 22 * </p> 23 23 * … … 26 26 public class HTMLButton extends HTMLPageElement implements IButton { 27 27 28 /** */ 28 /** 29 * <p> 30 * default serial version UID 31 * </p> 32 */ 29 33 private static final long serialVersionUID = 1L; 30 34 31 35 /** 32 36 * <p> 33 * TODO: comment37 * initializes the button with its specification and its parent 34 38 * </p> 35 39 * 36 * @param specification 37 * @param parent 40 * @param specification the specification for the represented tag 41 * @param parent the parent of the GUI element 38 42 */ 39 43 public HTMLButton(HTMLPageElementSpec specification, HTMLGUIElement parent) { … … 41 45 } 42 46 43 /* 44 * (non-Javadoc) 45 * 47 /* (non-Javadoc) 46 48 * @see de.ugoe.cs.autoquest.plugin.html.guimodel.HTMLGUIElement#getElementDescriptor() 47 49 */ -
trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/guimodel/HTMLCanvas.java
r1012 r1278 19 19 /** 20 20 * <p> 21 * TODO comment21 * a representation for a canvas on a web page. 22 22 * </p> 23 23 * … … 26 26 public class HTMLCanvas extends HTMLPageElement implements ICanvas { 27 27 28 /** */ 28 /** 29 * <p> 30 * default serial version UID 31 * </p> 32 */ 29 33 private static final long serialVersionUID = 1L; 30 34 31 35 /** 32 36 * <p> 33 * TODO: comment37 * initializes the canvas with its specification and its parent 34 38 * </p> 35 39 * 36 * @param specification 37 * @param parent 40 * @param specification the specification for the represented tag 41 * @param parent the parent of the GUI element 38 42 */ 39 43 public HTMLCanvas(HTMLPageElementSpec specification, HTMLGUIElement parent) { … … 41 45 } 42 46 43 /* 44 * (non-Javadoc) 45 * 47 /* (non-Javadoc) 46 48 * @see de.ugoe.cs.autoquest.plugin.html.guimodel.HTMLGUIElement#getElementDescriptor() 47 49 */ -
trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/guimodel/HTMLCheckBox.java
r1012 r1278 19 19 /** 20 20 * <p> 21 * TODO comment21 * a representation for a check box on a web page. 22 22 * </p> 23 23 * … … 26 26 public class HTMLCheckBox extends HTMLPageElement implements ICheckBox { 27 27 28 /** */ 28 /** 29 * <p> 30 * default serial version UID 31 * </p> 32 */ 29 33 private static final long serialVersionUID = 1L; 30 34 31 35 /** 32 36 * <p> 33 * TODO: comment37 * initializes the check box with its specification and its parent 34 38 * </p> 35 39 * 36 * @param specification 37 * @param parent 40 * @param specification the specification for the represented tag 41 * @param parent the parent of the GUI element 38 42 */ 39 43 public HTMLCheckBox(HTMLPageElementSpec specification, HTMLGUIElement parent) { … … 41 45 } 42 46 43 /* 44 * (non-Javadoc) 45 * 47 /* (non-Javadoc) 46 48 * @see de.ugoe.cs.autoquest.plugin.html.guimodel.HTMLGUIElement#getElementDescriptor() 47 49 */ -
trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/guimodel/HTMLComboBox.java
r1012 r1278 19 19 /** 20 20 * <p> 21 * TODO comment21 * a representation for a combo box on a web page. 22 22 * </p> 23 23 * … … 26 26 public class HTMLComboBox extends HTMLPageElement implements IComboBox { 27 27 28 /** */ 28 /** 29 * <p> 30 * default serial version UID 31 * </p> 32 */ 29 33 private static final long serialVersionUID = 1L; 30 34 31 35 /** 32 36 * <p> 33 * TODO: comment37 * initializes the combo box with its specification and its parent 34 38 * </p> 35 39 * 36 * @param specification 37 * @param parent 40 * @param specification the specification for the represented tag 41 * @param parent the parent of the GUI element 38 42 */ 39 43 public HTMLComboBox(HTMLPageElementSpec specification, HTMLGUIElement parent) { … … 41 45 } 42 46 43 /* 44 * (non-Javadoc) 45 * 47 /* (non-Javadoc) 46 48 * @see de.ugoe.cs.autoquest.plugin.html.guimodel.HTMLGUIElement#getElementDescriptor() 47 49 */ -
trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/guimodel/HTMLImage.java
r976 r1278 19 19 /** 20 20 * <p> 21 * TODO comment21 * a representation for an image on a web page. 22 22 * </p> 23 23 * … … 26 26 public class HTMLImage extends HTMLPageElement implements IImage { 27 27 28 /** */ 28 /** 29 * <p> 30 * default serial version UID 31 * </p> 32 */ 29 33 private static final long serialVersionUID = 1L; 30 34 31 35 /** 32 36 * <p> 33 * TODO: comment37 * initializes the image with its specification and its parent 34 38 * </p> 35 39 * 36 * @param specification 37 * @param parent 40 * @param specification the specification for the represented tag 41 * @param parent the parent of the GUI element 38 42 */ 39 43 public HTMLImage(HTMLPageElementSpec specification, HTMLGUIElement parent) { … … 41 45 } 42 46 43 /* 44 * (non-Javadoc) 45 * 47 /* (non-Javadoc) 46 48 * @see de.ugoe.cs.autoquest.plugin.html.guimodel.HTMLGUIElement#getElementDescriptor() 47 49 */ -
trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/guimodel/HTMLLink.java
r961 r1278 19 19 /** 20 20 * <p> 21 * TODO comment21 * a representation for a link on a web page. 22 22 * </p> 23 23 * … … 26 26 public class HTMLLink extends HTMLPageElement implements IButton { 27 27 28 /** */ 28 /** 29 * <p> 30 * default serial version UID 31 * </p> 32 */ 29 33 private static final long serialVersionUID = 1L; 30 34 31 35 /** 32 36 * <p> 33 * TODO: comment37 * initializes the link with its specification and its parent 34 38 * </p> 35 39 * 36 * @param specification 37 * @param parent 40 * @param specification the specification for the represented tag 41 * @param parent the parent of the GUI element 38 42 */ 39 43 public HTMLLink(HTMLPageElementSpec specification, HTMLGUIElement parent) { … … 41 45 } 42 46 43 /* 44 * (non-Javadoc) 45 * 47 /* (non-Javadoc) 46 48 * @see de.ugoe.cs.autoquest.plugin.html.guimodel.HTMLGUIElement#getElementDescriptor() 47 49 */ -
trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/guimodel/HTMLNonGUITag.java
r1223 r1278 19 19 /** 20 20 * <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 22 23 * </p> 23 24 * … … 26 27 public class HTMLNonGUITag extends HTMLPageElement implements IGUIElement { 27 28 28 /** */ 29 /** 30 * <p> 31 * default serial version UID 32 * </p> 33 */ 29 34 private static final long serialVersionUID = 1L; 30 35 31 36 /** 32 37 * <p> 33 * TODO: comment38 * initializes the dummy representation with its specification and its parent 34 39 * </p> 35 40 * 36 * @param specification 37 * @param parent 41 * @param specification the specification for the represented tag 42 * @param parent the parent of the GUI element 38 43 */ 39 44 public HTMLNonGUITag(HTMLPageElementSpec specification, HTMLGUIElement parent) { … … 41 46 } 42 47 43 /* 44 * (non-Javadoc) 45 * 48 /* (non-Javadoc) 46 49 * @see de.ugoe.cs.autoquest.plugin.html.guimodel.HTMLGUIElement#getElementDescriptor() 47 50 */ -
trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/guimodel/HTMLPanel.java
r961 r1278 19 19 /** 20 20 * <p> 21 * TODO comment21 * a representation for a panel on a web page. 22 22 * </p> 23 23 * … … 26 26 public class HTMLPanel extends HTMLPageElement implements IPanel { 27 27 28 /** */ 28 /** 29 * <p> 30 * default serial version UID 31 * </p> 32 */ 29 33 private static final long serialVersionUID = 1L; 30 34 31 35 /** 32 36 * <p> 33 * TODO: comment37 * initializes the panel with its specification and its parent 34 38 * </p> 35 39 * 36 * @param specification 37 * @param parent 40 * @param specification the specification for the represented tag 41 * @param parent the parent of the GUI element 38 42 */ 39 43 public HTMLPanel(HTMLPageElementSpec specification, HTMLGUIElement parent) { … … 41 45 } 42 46 43 /* 44 * (non-Javadoc) 45 * 47 /* (non-Javadoc) 46 48 * @see de.ugoe.cs.autoquest.plugin.html.guimodel.HTMLGUIElement#getElementDescriptor() 47 49 */ -
trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/guimodel/HTMLRadioButton.java
r1012 r1278 19 19 /** 20 20 * <p> 21 * TODO comment21 * a representation for a radio button on a web page. 22 22 * </p> 23 23 * … … 26 26 public class HTMLRadioButton extends HTMLPageElement implements IRadioButton { 27 27 28 /** */ 28 /** 29 * <p> 30 * default serial version UID 31 * </p> 32 */ 29 33 private static final long serialVersionUID = 1L; 30 34 31 35 /** 32 36 * <p> 33 * TODO: comment37 * initializes the radio button with its specification and its parent 34 38 * </p> 35 39 * 36 * @param specification 37 * @param parent 40 * @param specification the specification for the represented tag 41 * @param parent the parent of the GUI element 38 42 */ 39 43 public HTMLRadioButton(HTMLPageElementSpec specification, HTMLGUIElement parent) { … … 41 45 } 42 46 43 /* 44 * (non-Javadoc) 45 * 47 /* (non-Javadoc) 46 48 * @see de.ugoe.cs.autoquest.plugin.html.guimodel.HTMLGUIElement#getElementDescriptor() 47 49 */ -
trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/guimodel/HTMLText.java
r976 r1278 19 19 /** 20 20 * <p> 21 * TODO comment21 * a representation for a text on a web page. 22 22 * </p> 23 23 * … … 26 26 public class HTMLText extends HTMLPageElement implements IText { 27 27 28 /** */ 28 /** 29 * <p> 30 * default serial version UID 31 * </p> 32 */ 29 33 private static final long serialVersionUID = 1L; 30 34 31 35 /** 32 36 * <p> 33 * TODO: comment37 * initializes the text with its specification and its parent 34 38 * </p> 35 39 * 36 * @param specification 37 * @param parent 40 * @param specification the specification for the represented tag 41 * @param parent the parent of the GUI element 38 42 */ 39 43 public HTMLText(HTMLPageElementSpec specification, HTMLGUIElement parent) { … … 41 45 } 42 46 43 /* 44 * (non-Javadoc) 45 * 47 /* (non-Javadoc) 46 48 * @see de.ugoe.cs.autoquest.plugin.html.guimodel.HTMLGUIElement#getElementDescriptor() 47 49 */ -
trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/guimodel/HTMLTextArea.java
r961 r1278 19 19 /** 20 20 * <p> 21 * TODO comment21 * a representation for a text area on a web page. 22 22 * </p> 23 23 * … … 26 26 public class HTMLTextArea extends HTMLPageElement implements ITextArea { 27 27 28 /** */ 28 /** 29 * <p> 30 * default serial version UID 31 * </p> 32 */ 29 33 private static final long serialVersionUID = 1L; 30 34 31 35 /** 32 36 * <p> 33 * TODO: comment37 * initializes the text area with its specification and its parent 34 38 * </p> 35 39 * 36 * @param specification 37 * @param parent 40 * @param specification the specification for the represented tag 41 * @param parent the parent of the GUI element 38 42 */ 39 43 public HTMLTextArea(HTMLPageElementSpec specification, HTMLGUIElement parent) { … … 41 45 } 42 46 43 /* 44 * (non-Javadoc) 45 * 47 /* (non-Javadoc) 46 48 * @see de.ugoe.cs.autoquest.plugin.html.guimodel.HTMLGUIElement#getElementDescriptor() 47 49 */ -
trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/guimodel/HTMLTextField.java
r1012 r1278 19 19 /** 20 20 * <p> 21 * TODO comment21 * a representation for a text field on a web page. 22 22 * </p> 23 23 * … … 26 26 public class HTMLTextField extends HTMLPageElement implements ITextField { 27 27 28 /** */ 28 /** 29 * <p> 30 * default serial version UID 31 * </p> 32 */ 29 33 private static final long serialVersionUID = 1L; 30 34 31 35 /** 32 36 * <p> 33 * TODO: comment37 * initializes the text field with its specification and its parent 34 38 * </p> 35 39 * 36 * @param specification 37 * @param parent 40 * @param specification the specification for the represented tag 41 * @param parent the parent of the GUI element 38 42 */ 39 43 public HTMLTextField(HTMLPageElementSpec specification, HTMLGUIElement parent) { … … 41 45 } 42 46 43 /* 44 * (non-Javadoc) 45 * 47 /* (non-Javadoc) 46 48 * @see de.ugoe.cs.autoquest.plugin.html.guimodel.HTMLGUIElement#getElementDescriptor() 47 49 */
Note: See TracChangeset
for help on using the changeset viewer.