You are viewing a plain text version of this content. The canonical link for it is here.
Posted to ojb-dev@db.apache.org by br...@apache.org on 2004/12/05 16:06:58 UTC

cvs commit: db-ojb/src/java/org/apache/ojb/broker/util/collections TrackingCollectionImpl.java

brj         2004/12/05 07:06:58

  Modified:    src/java/org/apache/ojb/broker/util/collections
                        TrackingCollectionImpl.java
  Log:
  javadoc update
  
  Revision  Changes    Path
  1.5       +10 -1     db-ojb/src/java/org/apache/ojb/broker/util/collections/TrackingCollectionImpl.java
  
  Index: TrackingCollectionImpl.java
  ===================================================================
  RCS file: /home/cvs/db-ojb/src/java/org/apache/ojb/broker/util/collections/TrackingCollectionImpl.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- TrackingCollectionImpl.java	4 Dec 2004 12:04:22 -0000	1.4
  +++ TrackingCollectionImpl.java	5 Dec 2004 15:06:57 -0000	1.5
  @@ -43,6 +43,8 @@
       }
   
       /**
  +     * Adds an object to the collection and registers it as new
  +     * if it could be successfully added.
        * @see java.util.Collection#add(java.lang.Object)
        */
       public boolean add(Object o)
  @@ -56,6 +58,8 @@
       }
   
       /**
  +     * Adds a collection of objects to the collection and registers them as new
  +     * if they could be successfully added.
        * @see java.util.Collection#addAll(java.util.Collection)
        */
       public boolean addAll(Collection c)
  @@ -73,6 +77,7 @@
       }
   
       /**
  +     * Removes all objects form the collection and registers them as deleted.
        * @see java.util.Collection#clear()
        */
       public void clear()
  @@ -83,6 +88,8 @@
       }
   
       /**
  +     * Removes an object from the collection and registers it 
  +     * as deleted if it could be successfully removed.
        * @see java.util.Collection#remove(java.lang.Object)
        */
       public boolean remove(Object o)
  @@ -97,6 +104,8 @@
       }
   
       /**
  +     * Removes a collection of objects from the collection and registers them 
  +     * as deleted if they could be successfully removed.
        * @see java.util.Collection#removeAll(java.util.Collection)
        */
       public boolean removeAll(Collection c)
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: ojb-dev-unsubscribe@db.apache.org
For additional commands, e-mail: ojb-dev-help@db.apache.org