Ignore:
Timestamp:
09/09/11 06:23:36 (13 years ago)
Author:
sherbold
Message:
  • code documentation and formatting
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/EventBenchConsole/src/de/ugoe/cs/eventbench/windows/WindowsEvent.java

    r87 r171  
    44import de.ugoe.cs.eventbench.windows.data.WindowsMessage; 
    55 
    6  
    7 // convenience class 
     6/** 
     7 * <p> 
     8 * Convenience class for working with Windows MFC events. 
     9 * </p> 
     10 *  
     11 * @author Steffen Herbold 
     12 * @version 1.0 
     13 */ 
    814public class WindowsEvent extends ReplayableEvent<WindowsMessage> { 
    915 
    1016        /** 
     17         * <p> 
    1118         * Id for object serialization. 
     19         * </p> 
    1220         */ 
    1321        private static final long serialVersionUID = 1L; 
    1422 
     23        /** 
     24         * <p> 
     25         * Constructor. Creates a new WindowEvent. 
     26         * </p> 
     27         *  
     28         * @see de.ugoe.cs.eventbench.data.Event#Event(String) 
     29         * @param type 
     30         *            type of the event. 
     31         */ 
    1532        public WindowsEvent(String type) { 
    1633                super(type); 
Note: See TracChangeset for help on using the changeset viewer.