| 
     
      
      
      From: Ben W. <bw...@jb...> - 2006-07-07 10:26:07
      
     
   | 
  User: bwang   
  Date: 06/07/07 06:26:03
  Modified:    src-50/org/jboss/cache/pojo/collection        
                        CachedListImpl.java CachedMapImpl.java
                        CachedSetImpl.java CollectionInterceptorUtil.java
  Removed:     src-50/org/jboss/cache/pojo/collection        
                        AbstractCollectionInterceptor.java
                        CachedListInterceptor.java
                        CachedMapInterceptor.java CachedSetInterceptor.java
  Log:
  Relocated the dynamic interceptors
  
  Revision  Changes    Path
  1.4       +2 -1      JBossCache/src-50/org/jboss/cache/pojo/collection/CachedListImpl.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: CachedListImpl.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src-50/org/jboss/cache/pojo/collection/CachedListImpl.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -b -r1.3 -r1.4
  --- CachedListImpl.java	27 Jun 2006 06:19:16 -0000	1.3
  +++ CachedListImpl.java	7 Jul 2006 10:26:03 -0000	1.4
  @@ -11,6 +11,7 @@
   import org.jboss.cache.pojo.util.AopUtil;
   import org.jboss.cache.pojo.util.Null;
   import org.jboss.cache.pojo.PojoTreeCache;
  +import org.jboss.cache.pojo.interceptors.dynamic.AbstractCollectionInterceptor;
   
   import java.util.Iterator;
   import java.util.LinkedList;
  @@ -27,7 +28,7 @@
    */
   
   @SuppressWarnings({"CanBeFinal"})
  -class CachedListImpl extends CachedListAbstract implements List
  +public class CachedListImpl extends CachedListAbstract implements List
   {
   
   //   protected static final Log log_ = LogFactory.getLog(CachedListImpl.class);
  
  
  
  1.7       +3 -2      JBossCache/src-50/org/jboss/cache/pojo/collection/CachedMapImpl.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: CachedMapImpl.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src-50/org/jboss/cache/pojo/collection/CachedMapImpl.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -b -r1.6 -r1.7
  --- CachedMapImpl.java	30 Jun 2006 19:11:11 -0000	1.6
  +++ CachedMapImpl.java	7 Jul 2006 10:26:03 -0000	1.7
  @@ -11,6 +11,7 @@
   import org.jboss.cache.Fqn;
   import org.jboss.cache.pojo.util.Null;
   import org.jboss.cache.pojo.PojoTreeCache;
  +import org.jboss.cache.pojo.interceptors.dynamic.AbstractCollectionInterceptor;
   
   import java.util.AbstractCollection;
   import java.util.AbstractSet;
  @@ -30,7 +31,7 @@
    * @author Scott Marlow
    */
   @SuppressWarnings({"CanBeFinal"})
  -class CachedMapImpl implements Map
  +public class CachedMapImpl implements Map
   {
   
   //   protected static final Log log_ = LogFactory.getLog(CachedMapImpl.class);
  @@ -38,7 +39,7 @@
      private PojoTreeCache cache_;
      private AbstractCollectionInterceptor interceptor_;
   
  -   CachedMapImpl(PojoTreeCache cache, AbstractCollectionInterceptor interceptor)
  +   public CachedMapImpl(PojoTreeCache cache, AbstractCollectionInterceptor interceptor)
      {
         this.cache_ = cache;
         interceptor_ = interceptor;
  
  
  
  1.4       +2 -1      JBossCache/src-50/org/jboss/cache/pojo/collection/CachedSetImpl.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: CachedSetImpl.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src-50/org/jboss/cache/pojo/collection/CachedSetImpl.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -b -r1.3 -r1.4
  --- CachedSetImpl.java	27 Jun 2006 06:19:16 -0000	1.3
  +++ CachedSetImpl.java	7 Jul 2006 10:26:03 -0000	1.4
  @@ -12,6 +12,7 @@
   import org.jboss.cache.pojo.util.AopUtil;
   import org.jboss.cache.pojo.util.Null;
   import org.jboss.cache.pojo.PojoTreeCache;
  +import org.jboss.cache.pojo.interceptors.dynamic.AbstractCollectionInterceptor;
   
   import java.util.AbstractSet;
   import java.util.Collection;
  @@ -28,7 +29,7 @@
    * @author Jussi Pyörre
    */
   @SuppressWarnings({"CanBeFinal"})
  -class CachedSetImpl extends AbstractSet
  +public class CachedSetImpl extends AbstractSet
   {
   //   protected static final Log log_=LogFactory.getLog(CachedSetImpl.class);
   
  
  
  
  1.4       +4 -0      JBossCache/src-50/org/jboss/cache/pojo/collection/CollectionInterceptorUtil.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: CollectionInterceptorUtil.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src-50/org/jboss/cache/pojo/collection/CollectionInterceptorUtil.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -b -r1.3 -r1.4
  --- CollectionInterceptorUtil.java	27 Jun 2006 06:19:16 -0000	1.3
  +++ CollectionInterceptorUtil.java	7 Jul 2006 10:26:03 -0000	1.4
  @@ -16,6 +16,10 @@
   import org.jboss.aop.util.MethodHashing;
   import org.jboss.cache.Fqn;
   import org.jboss.cache.pojo.PojoTreeCache;
  +import org.jboss.cache.pojo.interceptors.dynamic.AbstractCollectionInterceptor;
  +import org.jboss.cache.pojo.interceptors.dynamic.CachedListInterceptor;
  +import org.jboss.cache.pojo.interceptors.dynamic.CachedMapInterceptor;
  +import org.jboss.cache.pojo.interceptors.dynamic.CachedSetInterceptor;
   import org.jboss.cache.pojo.util.AopUtil;
   
   import java.lang.reflect.InvocationTargetException;
  
  
  
 |