You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hivemind.apache.org by kn...@apache.org on 2005/02/19 12:17:17 UTC

cvs commit: jakarta-hivemind/framework/src/java/org/apache/hivemind/impl ConstructableServicePoint.java RegistryInfrastructureImpl.java

knut        2005/02/19 03:17:17

  Modified:    framework/src/java/org/apache/hivemind/internal
                        RegistryInfrastructure.java
               framework/src/java/org/apache/hivemind/util StringUtils.java
               framework/src/java/org/apache/hivemind/impl
                        ConstructableServicePoint.java
                        RegistryInfrastructureImpl.java
  Log:
  takes care of last few javadoc warnings
  
  Revision  Changes    Path
  1.11      +1 -1      jakarta-hivemind/framework/src/java/org/apache/hivemind/internal/RegistryInfrastructure.java
  
  Index: RegistryInfrastructure.java
  ===================================================================
  RCS file: /home/cvs/jakarta-hivemind/framework/src/java/org/apache/hivemind/internal/RegistryInfrastructure.java,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- RegistryInfrastructure.java	19 Feb 2005 02:40:54 -0000	1.10
  +++ RegistryInfrastructure.java	19 Feb 2005 11:17:17 -0000	1.11
  @@ -140,7 +140,7 @@
        * @throws ApplicationRuntimeException
        *             if the translator can not be constructed (i.e., the name is not known)
        */
  -    public Translator getTranslator(String translator);
  +    public Translator getTranslator(String constructor);
   
       /**
        * Returns the locale for which the registry was created.
  
  
  
  1.5       +1 -1      jakarta-hivemind/framework/src/java/org/apache/hivemind/util/StringUtils.java
  
  Index: StringUtils.java
  ===================================================================
  RCS file: /home/cvs/jakarta-hivemind/framework/src/java/org/apache/hivemind/util/StringUtils.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- StringUtils.java	19 Feb 2005 02:40:53 -0000	1.4
  +++ StringUtils.java	19 Feb 2005 11:17:17 -0000	1.5
  @@ -65,7 +65,7 @@
       /**
        * Converts a string such that the first character is upper case.
        * 
  -     * @param the input string (possibly empty)
  +     * @param input the input string (possibly empty)
        * @return the string with the first character converted from lowercase to upper case (may
        * return the string unchanged if already capitalized)
        */
  
  
  
  1.6       +1 -1      jakarta-hivemind/framework/src/java/org/apache/hivemind/impl/ConstructableServicePoint.java
  
  Index: ConstructableServicePoint.java
  ===================================================================
  RCS file: /home/cvs/jakarta-hivemind/framework/src/java/org/apache/hivemind/impl/ConstructableServicePoint.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- ConstructableServicePoint.java	19 Feb 2005 02:40:53 -0000	1.5
  +++ ConstructableServicePoint.java	19 Feb 2005 11:17:17 -0000	1.6
  @@ -38,7 +38,7 @@
       public ServiceImplementationConstructor getServiceConstructor();
   
       /**
  -     * Returns a list of {@link org.apache.hivemind.ServiceInterceptorContribution}s, ordered
  +     * Returns a list of {@link org.apache.hivemind.internal.ServiceInterceptorContribution}s, ordered
        * according to their dependencies. May return null or an empty list.
        * <p>
        * Note that the order is tricky! To keep any error messages while ordering the interceptors
  
  
  
  1.9       +2 -2      jakarta-hivemind/framework/src/java/org/apache/hivemind/impl/RegistryInfrastructureImpl.java
  
  Index: RegistryInfrastructureImpl.java
  ===================================================================
  RCS file: /home/cvs/jakarta-hivemind/framework/src/java/org/apache/hivemind/impl/RegistryInfrastructureImpl.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- RegistryInfrastructureImpl.java	6 Jan 2005 01:45:12 -0000	1.8
  +++ RegistryInfrastructureImpl.java	19 Feb 2005 11:17:17 -0000	1.9
  @@ -472,9 +472,9 @@
           return _errorHandler;
       }
   
  -    public Translator getTranslator(String translator)
  +    public Translator getTranslator(String constructor)
       {
  -        return _translatorManager.getTranslator(translator);
  +        return _translatorManager.getTranslator(constructor);
       }
   
       public Object getServiceFromToken(ServiceToken token)
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: hivemind-cvs-unsubscribe@jakarta.apache.org
For additional commands, e-mail: hivemind-cvs-help@jakarta.apache.org