Changeset 1067

Show
Ignore:
Timestamp:
07/08/08 19:13:20 (4 years ago)
Author:
amandel
Message:

Javadoc typos fixed

Location:
trunk/src/java/org/jcoderz/commons/config
Files:
4 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/java/org/jcoderz/commons/config/ConfigurationServiceBean.java

    r1011 r1067  
    3737 
    3838/** 
    39  * The (stateless) session bean fascade of the Configuration Service. 
     39 * The (stateless) session bean facade of the Configuration Service. 
    4040 * 
    4141 * XDoclet tags for the Bean must be declared in this class; XDoclet tags for 
  • trunk/src/java/org/jcoderz/commons/config/ConfigurationServiceImpl.java

    r1011 r1067  
    4242 * Implementation of the ConfigurationService business methods. 
    4343 * 
    44  * This class holds all business logic of the service to fetch specifc 
     44 * This class holds all business logic of the service to fetch specific 
    4545 * configuration data. 
    4646 * Implementing the business interface ConfigurationServiceInterface. 
    4747 * 
    48  * On this level only primitve types String, int, long and boolean are used. 
    49  * The wellformed and complex typed interfaces for the specific services are 
     48 * On this level only primitive types String, int, long and boolean are used. 
     49 * The well-formed and complex typed interfaces for the specific services are 
    5050 * using this more simple interface. 
    5151 * 
    5252 * IMPORTANT: 
    53  * Because of XDoclet Bug in current version, we define deligators to the super 
     53 * Because of XDoclet Bug in current version, we define delegators to the super 
    5454 * class with ejb-tags here. 
    5555 * These should be deleted if XDoclet is fixed. 
     
    8585   } 
    8686 
    87   
     87 
    8888   /** {@inheritDoc} */ 
    8989   public ServiceConfiguration getServiceConfiguration ( 
     
    106106 
    107107   // IMPORTANT: 
    108    // Because of XDoclet Bug in current version, we define the deligators 
     108   // Because of XDoclet Bug in current version, we define the delegators 
    109109   // here with ejb-tags. 
    110110   // Normally the implementation from CommonImpl is already inherited. 
  • trunk/src/java/org/jcoderz/commons/config/ConfigurationServiceInterface.java

    r1011 r1067  
    4141 * configuration data. 
    4242 * 
    43  * On this level only primitve types String, int, long and boolean are used. 
    44  * The wellformed and complex typed interfaces for the specific services are 
     43 * On this level only primitive types String, int, long and boolean are used. 
     44 * The well formed and complex typed interfaces for the specific services are 
    4545 * using this more simple interface. 
    4646 * 
    4747 * A factory method is provided to get the service specific typed interface. 
    48  * The service specifc, wellformed and typed interfaces and their 
    49  * implementationsis are generated by XSLT. 
     48 * The service specific, well formed and typed interfaces and their 
     49 * implementation is generated by XSLT. 
    5050 * 
    5151 * For notifications of cache updates a registration for a ConfigurationListener 
  • trunk/src/java/org/jcoderz/commons/config/ServiceConfiguration.java

    r1011 r1067  
    4646 
    4747   /** 
    48     * selects the chache mode,if the types interface implementation should cache 
     48    * selects the cache mode,if the types interface implementation should cache 
    4949    * its configuration. The caching is enabled by default. 
    5050    *