Ignore:
Timestamp:
10/12/12 14:04:09 (12 years ago)
Author:
pharms
Message:
  • added some comments
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/autoquest-htmlmonitor/src/main/java/de/ugoe/cs/autoquest/htmlmonitor/HtmlClientInfos.java

    r857 r870  
    55/** 
    66 * <p> 
    7  * TODO comment 
     7 * represents infos of a client together with a shown URL and its title 
    88 * </p> 
    99 *  
     
    1313 
    1414    /** 
    15      *  
     15     * id of a client 
    1616     */ 
    1717    private String clientId; 
    1818 
    1919    /** 
    20      *  
     20     * browser used by the client 
    2121     */ 
    2222    private String userAgent; 
    2323 
    2424    /** 
    25      *  
     25     * URL of the web site shown by the browser of the client 
    2626     */ 
    2727    private URL url; 
    2828 
    2929    /** 
    30      *  
     30     * title of the web site shown by the browser of the client 
    3131     */ 
    3232    private String title; 
     
    3434    /** 
    3535     * <p> 
    36      * TODO: comment 
     36     * instantiates an infos object with client id, browser at client side, the URL of the 
     37     * shown website and its title. 
    3738     * </p> 
    3839     * 
    39      * @param clientId 
    40      * @param userAgent 
    41      * @param url 
    42      * @param title 
     40     * @param clientId  id of a client 
     41     * @param userAgent browser used by the client 
     42     * @param url       URL of the web site shown by the browser of the client 
     43     * @param title     title of the web site shown by the browser of the client 
    4344     */ 
    4445    public HtmlClientInfos(String clientId, String userAgent, URL url, String title) { 
Note: See TracChangeset for help on using the changeset viewer.