You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by cr...@apache.org on 2003/09/27 20:15:12 UTC

cvs commit: jakarta-commons-sandbox/chain/src/java/org/apache/commons/chain/impl ContextBase2.java ContextBaseAttributes.java ContextMap2.java

craigmcc    2003/09/27 11:15:12

  Modified:    chain/src/java/org/apache/commons/chain/impl
                        ContextBase2.java ContextBaseAttributes.java
                        ContextMap2.java
  Log:
  Rearrange warning notes to avoid whines from Javadoc under JDK 1.4.2.
  Cosmetics only; no content or functional change.
  
  Revision  Changes    Path
  1.2       +7 -7      jakarta-commons-sandbox/chain/src/java/org/apache/commons/chain/impl/ContextBase2.java
  
  Index: ContextBase2.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/chain/src/java/org/apache/commons/chain/impl/ContextBase2.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- ContextBase2.java	17 Sep 2003 15:17:58 -0000	1.1
  +++ ContextBase2.java	27 Sep 2003 18:15:12 -0000	1.2
  @@ -64,13 +64,13 @@
   
   
   /**
  - * <p><em>WARNING: This is an EXPERIMENTAL class and may be removed at
  - * any time.</em></p>
  - *
    * <p>Convenience extension of {@link ContextBase} class.</p>
    *
    * <p>Provides support for using the internal map to store the  fields for any
    * JavaBean style properties defined by a sublcass</p>
  + *
  + * <p><em>WARNING: This is an EXPERIMENTAL class and may be removed at
  + * any time.</em></p>
    *
    * @author Ted Husted
    * @version $Revision$ $Date$
  
  
  
  1.3       +10 -10    jakarta-commons-sandbox/chain/src/java/org/apache/commons/chain/impl/ContextBaseAttributes.java
  
  Index: ContextBaseAttributes.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/chain/src/java/org/apache/commons/chain/impl/ContextBaseAttributes.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- ContextBaseAttributes.java	17 Sep 2003 15:17:58 -0000	1.2
  +++ ContextBaseAttributes.java	27 Sep 2003 18:15:12 -0000	1.3
  @@ -275,9 +275,6 @@
   
   
       /**
  -     * <p><em>WARNING: This is an EXPERIMENTAL feature and may be removed at
  -     * any time.</em></p>
  -     *
        * <p>Returns the value to which the internal map maps the specified key,
        * bypassing any JavaBean style getters. This method allows a
        * JavaBean getter to be defined for any additional processing but still
  @@ -285,6 +282,9 @@
        * public, this method can only be accessed by another member of hte
        * <code>org.apache.commons.chain.impl</code> package.</p>
        *
  +     * <p><em>WARNING: This is an EXPERIMENTAL feature and may be removed at
  +     * any time.</em></p>
  +     *
        * @param key key whose associated value is to be returned.
        * @return the value to which this map maps the specified key, or
        *	       <tt>null</tt> if the map contains no mapping for this key.
  @@ -303,15 +303,15 @@
       }
   
       /**
  -     * <p><em>WARNING: This is an EXPERIMENTAL feature and may be removed at
  -     * any time.</em></p>
  -     *
        * <p>Associates the key/value pair within the internal map,
        * bypassing any JavaBean style getters. This method allows a
        * JavaBean getter to be defined for any additional processing but still
        * use the internal map for storage, if desired. Since this class is not
        * public, this method can only be accessed by another member of hte
        * <code>org.apache.commons.chain.impl</code> package.</p>
  +     *
  +     * <p><em>WARNING: This is an EXPERIMENTAL feature and may be removed at
  +     * any time.</em></p>
        *
        * @param key key with which the specified value is to be associated.
        * @param value value to be associated with the specified key.
  
  
  
  1.2       +5 -5      jakarta-commons-sandbox/chain/src/java/org/apache/commons/chain/impl/ContextMap2.java
  
  Index: ContextMap2.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/chain/src/java/org/apache/commons/chain/impl/ContextMap2.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- ContextMap2.java	27 Sep 2003 03:57:28 -0000	1.1
  +++ ContextMap2.java	27 Sep 2003 18:15:12 -0000	1.2
  @@ -68,10 +68,10 @@
   
   
   /**
  + * <p>Simple extension of {@link ContextBase2} class to provide a Map interface to the attributes Map.</p>
  + *
    * <p><em>WARNING: This is an EXPERIMENTAL class and may be removed at
    * any time.</em></p>
  - *
  - * <p>Simple extension of {@link ContextBase2} class to provide a Map interface to the attributes Map.</p>
    *
    * @author Ted Husted
    * @version $Revision$ $Date$