[jboss-cvs] JBossCache/src-50/org/jboss/cache/pojo/interceptors/dynamic ...

Ben Wang bwang at jboss.com
Wed Jul 26 13:00:25 EDT 2006


  User: bwang   
  Date: 06/07/26 13:00:25

  Modified:    src-50/org/jboss/cache/pojo/interceptors/dynamic    
                        AbstractCollectionInterceptor.java
                        CachedListInterceptor.java
                        CachedMapInterceptor.java CachedSetInterceptor.java
  Log:
  API name typo.
  
  Revision  Changes    Path
  1.5       +2 -2      JBossCache/src-50/org/jboss/cache/pojo/interceptors/dynamic/AbstractCollectionInterceptor.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: AbstractCollectionInterceptor.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src-50/org/jboss/cache/pojo/interceptors/dynamic/AbstractCollectionInterceptor.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -b -r1.4 -r1.5
  --- AbstractCollectionInterceptor.java	17 Jul 2006 09:07:08 -0000	1.4
  +++ AbstractCollectionInterceptor.java	26 Jul 2006 17:00:25 -0000	1.5
  @@ -14,7 +14,7 @@
    * Abstract base class for collection interceptor.
    *
    * @author Ben Wang
  - * @version $Id: AbstractCollectionInterceptor.java,v 1.4 2006/07/17 09:07:08 bwang Exp $
  + * @version $Id: AbstractCollectionInterceptor.java,v 1.5 2006/07/26 17:00:25 bwang Exp $
    */
   @SuppressWarnings({"CanBeFinal"})
   public abstract class AbstractCollectionInterceptor implements BaseInterceptor
  @@ -76,5 +76,5 @@
      abstract void setCacheCopy(Object obj);
      abstract Object getCacheCopy();
      abstract void setCurrentCopy(Object obj);
  -   public abstract Object getCurrecntCopy();
  +   public abstract Object getCurrentCopy();
   }
  
  
  
  1.4       +3 -3      JBossCache/src-50/org/jboss/cache/pojo/interceptors/dynamic/CachedListInterceptor.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: CachedListInterceptor.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src-50/org/jboss/cache/pojo/interceptors/dynamic/CachedListInterceptor.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -b -r1.3 -r1.4
  --- CachedListInterceptor.java	14 Jul 2006 16:35:48 -0000	1.3
  +++ CachedListInterceptor.java	26 Jul 2006 17:00:25 -0000	1.4
  @@ -54,7 +54,7 @@
         CachedListInterceptor interceptor = new CachedListInterceptor();
         interceptor.setFqn(getFqn());
         interceptor.setAopInstance(getAopInstance());
  -      interceptor.setCurrentCopy(getCurrecntCopy());
  +      interceptor.setCurrentCopy(getCurrentCopy());
         interceptor.setInMemoryCopy(getInMemoryCopy());
         interceptor.setCacheCopy(getCacheCopy());
         return interceptor;
  @@ -65,7 +65,7 @@
         CachedListInterceptor interceptor = (CachedListInterceptor)intcptr;
         setFqn(interceptor.getFqn());
         setAopInstance(interceptor.getAopInstance());
  -      setCurrentCopy(interceptor.getCurrecntCopy());
  +      setCurrentCopy(interceptor.getCurrentCopy());
         setInMemoryCopy(interceptor.getInMemoryCopy());
         setCacheCopy(interceptor.getCacheCopy());
      }
  @@ -116,7 +116,7 @@
         current_ = inMemImpl_;
      }
   
  -   public Object getCurrecntCopy()
  +   public Object getCurrentCopy()
      {
         return current_;
      }
  
  
  
  1.4       +3 -3      JBossCache/src-50/org/jboss/cache/pojo/interceptors/dynamic/CachedMapInterceptor.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: CachedMapInterceptor.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src-50/org/jboss/cache/pojo/interceptors/dynamic/CachedMapInterceptor.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -b -r1.3 -r1.4
  --- CachedMapInterceptor.java	14 Jul 2006 16:35:48 -0000	1.3
  +++ CachedMapInterceptor.java	26 Jul 2006 17:00:25 -0000	1.4
  @@ -49,7 +49,7 @@
         CachedListInterceptor interceptor = new CachedListInterceptor();
         interceptor.setFqn(getFqn());
         interceptor.setAopInstance(getAopInstance());
  -      interceptor.setCurrentCopy(getCurrecntCopy());
  +      interceptor.setCurrentCopy(getCurrentCopy());
         interceptor.setInMemoryCopy(getInMemoryCopy());
         interceptor.setCacheCopy(getCacheCopy());
         return interceptor;
  @@ -60,12 +60,12 @@
         CachedListInterceptor interceptor = (CachedListInterceptor)intcptr;
         setFqn(interceptor.getFqn());
         setAopInstance(interceptor.getAopInstance());
  -      setCurrentCopy(interceptor.getCurrecntCopy());
  +      setCurrentCopy(interceptor.getCurrentCopy());
         setInMemoryCopy(interceptor.getInMemoryCopy());
         setCacheCopy(interceptor.getCacheCopy());
      }
   
  -   public Object getCurrecntCopy()
  +   public Object getCurrentCopy()
      {
         return current_;
      }
  
  
  
  1.4       +3 -3      JBossCache/src-50/org/jboss/cache/pojo/interceptors/dynamic/CachedSetInterceptor.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: CachedSetInterceptor.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src-50/org/jboss/cache/pojo/interceptors/dynamic/CachedSetInterceptor.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -b -r1.3 -r1.4
  --- CachedSetInterceptor.java	14 Jul 2006 16:35:48 -0000	1.3
  +++ CachedSetInterceptor.java	26 Jul 2006 17:00:25 -0000	1.4
  @@ -50,7 +50,7 @@
         CachedListInterceptor interceptor = new CachedListInterceptor();
         interceptor.setFqn(getFqn());
         interceptor.setAopInstance(getAopInstance());
  -      interceptor.setCurrentCopy(getCurrecntCopy());
  +      interceptor.setCurrentCopy(getCurrentCopy());
         interceptor.setInMemoryCopy(getInMemoryCopy());
         interceptor.setCacheCopy(getCacheCopy());
         return interceptor;
  @@ -61,12 +61,12 @@
         CachedListInterceptor interceptor = (CachedListInterceptor)intcptr;
         setFqn(interceptor.getFqn());
         setAopInstance(interceptor.getAopInstance());
  -      setCurrentCopy(interceptor.getCurrecntCopy());
  +      setCurrentCopy(interceptor.getCurrentCopy());
         setInMemoryCopy(interceptor.getInMemoryCopy());
         setCacheCopy(interceptor.getCacheCopy());
      }
   
  -   public Object getCurrecntCopy()
  +   public Object getCurrentCopy()
      {
         return current_;
      }
  
  
  



More information about the jboss-cvs-commits mailing list