[jboss-cvs] JBossCache/src/org/jboss/cache ...

Manik Surtani msurtani at jboss.com
Fri Jan 19 09:58:43 EST 2007


  User: msurtani
  Date: 07/01/19 09:58:43

  Modified:    src/org/jboss/cache   CacheImpl.java
                        RegionNotEmptyException.java
  Log:
  Improved Javadocs
  
  Revision  Changes    Path
  1.34      +6 -6      JBossCache/src/org/jboss/cache/CacheImpl.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: CacheImpl.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/CacheImpl.java,v
  retrieving revision 1.33
  retrieving revision 1.34
  diff -u -b -r1.33 -r1.34
  --- CacheImpl.java	19 Jan 2007 14:47:40 -0000	1.33
  +++ CacheImpl.java	19 Jan 2007 14:58:43 -0000	1.34
  @@ -85,18 +85,18 @@
   import java.util.concurrent.CopyOnWriteArraySet;
   
   /**
  - * A cache-like structure that is replicated across several members. Updates are
  - * multicast to all group members reliably and in order. User has the
  - * option to set transaction isolation levels and other options.
  + * The default implementation class of {@link org.jboss.cache.Cache} and {@link org.jboss.cache.CacheSPI}.  This class
  + * has it's roots in the legacy (JBoss Cache 1.x.x) org.jboss.cache.TreeCache class.
  + * <p/>
  + * You should not use this class directly, or attempt to cast {@link org.jboss.cache.Cache} or {@link org.jboss.cache.CacheSPI}
  + * interfaces directly to this class.
    *
    * @author Bela Ban
    * @author Ben Wang
    * @author <a href="mailto:manik at jboss.org">Manik Surtani (manik at jboss.org)</a>
    * @author Brian Stansberry
    * @author Daniel Huang (dhuang at jboss.org)
  - * @version $Id: CacheImpl.java,v 1.33 2007/01/19 14:47:40 msurtani Exp $
  - *          <p/>
  - * @see <a href="http://labs.jboss.com/portal/jbosscache/docs">JBossCache doc</a>
  + * @see org.jboss.cache.Cache
    */
   public class CacheImpl implements CacheSPI
   {
  
  
  
  1.4       +1 -5      JBossCache/src/org/jboss/cache/RegionNotEmptyException.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: RegionNotEmptyException.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/RegionNotEmptyException.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -b -r1.3 -r1.4
  --- RegionNotEmptyException.java	19 Jan 2007 02:04:11 -0000	1.3
  +++ RegionNotEmptyException.java	19 Jan 2007 14:58:43 -0000	1.4
  @@ -8,14 +8,10 @@
   package org.jboss.cache;
   
   /**
  - * Thrown when an attempt is made to
  - * {@link CacheImpl#activateRegion(String) activate a subtree}
  + * Thrown when an attempt is made to {@link RegionManager#activate(Fqn)} activate a subtree}
    * root in Fqn that already has an existing node in the cache.
    *
    * @author <a href="mailto://brian.stansberry@jboss.com">Brian Stansberry</a>
  - * @version $Revision$
  - * @see Cache#exists(Fqn)
  - * @see Cache#exists(String)
    */
   public class RegionNotEmptyException extends CacheException
   {
  
  
  



More information about the jboss-cvs-commits mailing list