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/HTMLServerSpec.java

    r1264 r1276  
    1919/** 
    2020 * <p> 
    21  * TODO comment 
     21 * a GUI element specification of an HTML server. This is the root element for a GUI model of 
     22 * an HTML web site. It is identified through a host and a port. Its children are documents. 
    2223 * </p> 
    2324 *  
     
    2627public class HTMLServerSpec extends HTMLGUIElementSpec implements IGUIElementSpec { 
    2728 
    28     /**  */ 
     29    /** 
     30     * <p> 
     31     * default serial version UID 
     32     * </p> 
     33     */ 
    2934    private static final long serialVersionUID = 1L; 
    3035     
    31     /** */ 
     36    /** 
     37     * <p> 
     38     * the host of the server 
     39     * </p> 
     40     */ 
    3241    private String host; 
    3342     
    34     /** */ 
     43    /** 
     44     * <p> 
     45     * the port of the server 
     46     * </p> 
     47     */ 
    3548    private int port; 
    3649 
    3750    /** 
    3851     * <p> 
    39      * TODO: comment 
     52     * initialize the server specification with a host and a port. 
    4053     * </p> 
    4154     * 
    42      * @param serverName 
    43      * @param port 
     55     * @param host the host name of the server 
     56     * @param port the port number of the server 
     57     *  
     58     * @throws IllegalArgumentException if one of the parameters is invalid (e.g. host = null) 
    4459     */ 
    4560    public HTMLServerSpec(String host, int port) { 
     
    97112    /** 
    98113     * <p> 
    99      * TODO: comment 
     114     * returns the host of the represented server 
    100115     * </p> 
    101116     * 
    102      * @return 
     117     * @return the host 
    103118     */ 
    104119    String getHost() { 
     
    108123    /** 
    109124     * <p> 
    110      * TODO: comment 
     125     * returns the port of the represented server 
    111126     * </p> 
    112127     * 
    113      * @return 
     128     * @return the port 
    114129     */ 
    115130    int getPort() { 
Note: See TracChangeset for help on using the changeset viewer.