Ignore:
Timestamp:
09/06/12 13:14:24 (12 years ago)
Author:
sherbold
Message:
  • code documentation
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/quest-core-events/src/main/java/de/ugoe/cs/quest/eventcore/IEventTarget.java

    r681 r780  
     1 
    12package de.ugoe.cs.quest.eventcore; 
    23 
     
    45 
    56/** 
    6  *  
    77 * <p> 
    8  * TODO comment 
     8 * Common interface for event targets. An event target can, e.g., be an element of a GUI or Web 
     9 * server. A concrete event-driven software platform can define its event targets through the 
     10 * implementation of this interface. 
    911 * </p> 
    1012 *  
    11  * @version $Revision: $ $Date: Aug 16, 2012$ 
    12  * @author 2012, last modified by $Author: sherbold$ 
     13 * @version 1.0 
     14 * @author Steffen Herbold 
    1315 */ 
    1416public interface IEventTarget extends Serializable { 
    1517 
     18    /** 
     19     * <p> 
     20     * Returns the name of event-driven software platform to which the target belongs. 
     21     * </p> 
     22     *  
     23     * @return name of the platform 
     24     */ 
    1625    public String getPlatform(); 
    17      
     26 
     27    /** 
     28     * <p> 
     29     * Returns a string identifier of the target. This is very convenient for visualizations of 
     30     * events. 
     31     * </p> 
     32     *  
     33     * @return target identifier 
     34     */ 
    1835    public String getStringIdentifier(); 
    1936} 
Note: See TracChangeset for help on using the changeset viewer.