Ignore:
Timestamp:
10/12/12 15:08:45 (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/HtmlMonitorServer.java

    r857 r871  
    88 
    99/** 
    10  * TODO: comment 
     10 * <p> 
     11 * this is the web server, that receives the client messages. It is initialized with a port on 
     12 * which it shall listen, as well as a message listener to forward the received messages to. 
     13 * Internally it starts a jetty web server with a single {@link HtmlMonitorServlet} to receive 
     14 * the messages. 
     15 * </p> 
    1116 *  
    1217 * @author Patrick Harms 
     
    1520     
    1621    /** 
    17      *  
     22     * the port to listen on 
    1823     */ 
    1924    private int port; 
    2025 
    2126    /** 
    22      *  
     27     * the jetty web server used for receiving messages 
    2328     */ 
    2429    private Server server; 
    2530 
    2631    /** 
    27      *  
     32     * the message listener to forward the messages to 
    2833     */ 
    2934    private HtmlMonitorMessageListener messageListener; 
     
    3136    /** 
    3237     * <p> 
    33      * TODO: comment 
     38     * initializes the server with the port to listen on and the message listener to forward 
     39     * the messages to. 
    3440     * </p> 
    3541     * 
     42     * @param port            the port to listen on 
     43     * @param messageListener the message listener to forward the messages to 
    3644     */ 
    3745    HtmlMonitorServer(int port, HtmlMonitorMessageListener messageListener) { 
Note: See TracChangeset for help on using the changeset viewer.