Ignore:
Timestamp:
07/26/13 09:20:36 (11 years ago)
Author:
pharms
Message:
  • added some Java Docs
File:
1 edited

Legend:

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

    r1054 r1276  
    1919/** 
    2020 * <p> 
    21  * TODO comment 
     21 * base class for all GUI element specifications in the context of HTML 
    2222 * </p> 
    2323 *  
     
    2626public class HTMLGUIElementSpec implements IGUIElementSpec { 
    2727 
    28     /**  */ 
     28    /** 
     29     * <p> 
     30     * default serial version UID 
     31     * </p> 
     32     */ 
    2933    private static final long serialVersionUID = 1L; 
    3034     
    31     /** */ 
     35    /** 
     36     * <p> 
     37     * the type of GUI element represented by this specification, which is usually the tag name of 
     38     * the HTML GUI element 
     39     * </p> 
     40     */ 
    3241    private String type; 
    3342     
    3443    /** 
    3544     * <p> 
    36      * TODO: comment 
     45     * instantiated the specification with the type, i.e., tag name of the represented GUI element 
    3746     * </p> 
    3847     * 
    39      * @param type 
    40      * @param index 
    41      * @param id 
     48     * @param type  the type, i.e., tag name of the represented GUI element 
     49     *  
     50     * @throws IllegalArgumentException if the provided type is null 
    4251     */ 
    4352    public HTMLGUIElementSpec(String type) { 
     
    7079    } 
    7180 
    72     /** 
    73      * <p> 
    74      * TODO: comment 
    75      * </p> 
     81    /* (non-Javadoc) 
     82     * @see de.ugoe.cs.autoquest.eventcore.guimodel.IGUIElementSpec#getTypeHierarchy() 
    7683     */ 
    7784    @Override 
Note: See TracChangeset for help on using the changeset viewer.