Changeset 26

Show
Ignore:
Timestamp:
09/26/07 17:17:48 (1 year ago)
Author:
alexander
Message:

comment

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/planet/util/ApplicationProperties.java

    r25 r26  
    11package planet.util; 
    22 
     3/** 
     4 * This interface permits to implement as static form 
     5 * This interficie allows to implement all the own properties of configuration 
     6 * of the application layer under a same instance.  It establishes a minimum  
     7 * contract, the method init(), so that their values are initialized. For this 
     8 * reason, cast will have to be made in each place where it is necessary,  
     9 * to the concrete implementation. 
     10 * @author <a href="mailto:constant@rbg.informatik.tu-darmstadt.de">Alexander Constantin</a> 
     11 * Date: 26/09/2007 
     12 */ 
    313public interface ApplicationProperties extends PropertiesInitializer { 
    414