[jboss-cvs] JBossCache/tests/functional/org/jboss/cache/pojo/event ...

Jason Thomas Greene jgreene at jboss.com
Mon Apr 23 09:09:21 EDT 2007


  User: jgreene 
  Date: 07/04/23 09:09:21

  Modified:    tests/functional/org/jboss/cache/pojo/event    
                        ListTest.java LocalTest.java MapTest.java
                        SetTest.java
  Log:
  Add array placeholder to API
  
  Revision  Changes    Path
  1.3       +5 -0      JBossCache/tests/functional/org/jboss/cache/pojo/event/ListTest.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ListTest.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/tests/functional/org/jboss/cache/pojo/event/ListTest.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- ListTest.java	23 Apr 2007 02:53:23 -0000	1.2
  +++ ListTest.java	23 Apr 2007 13:09:21 -0000	1.3
  @@ -18,6 +18,7 @@
   import org.jboss.cache.pojo.PojoCache;
   import org.jboss.cache.pojo.PojoCacheFactory;
   import org.jboss.cache.pojo.PojoCacheListener;
  +import org.jboss.cache.pojo.notification.ArrayModifyNotification;
   import org.jboss.cache.pojo.notification.AttachNotification;
   import org.jboss.cache.pojo.notification.DetachNotification;
   import org.jboss.cache.pojo.notification.FieldModifyNotification;
  @@ -330,5 +331,9 @@
         public void modify(MapModifyNotification map)
         {
         }
  +
  +      public void modify(ArrayModifyNotification notification)
  +      {
  +      }
      }
   }
  
  
  
  1.3       +5 -0      JBossCache/tests/functional/org/jboss/cache/pojo/event/LocalTest.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: LocalTest.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/tests/functional/org/jboss/cache/pojo/event/LocalTest.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- LocalTest.java	23 Apr 2007 02:53:23 -0000	1.2
  +++ LocalTest.java	23 Apr 2007 13:09:21 -0000	1.3
  @@ -15,6 +15,7 @@
   import org.jboss.cache.pojo.PojoCache;
   import org.jboss.cache.pojo.PojoCacheFactory;
   import org.jboss.cache.pojo.PojoCacheListener;
  +import org.jboss.cache.pojo.notification.ArrayModifyNotification;
   import org.jboss.cache.pojo.notification.AttachNotification;
   import org.jboss.cache.pojo.notification.DetachNotification;
   import org.jboss.cache.pojo.notification.FieldModifyNotification;
  @@ -222,5 +223,9 @@
         public void modify(MapModifyNotification map)
         {
         }
  +
  +      public void modify(ArrayModifyNotification notification)
  +      {
  +      }
      }
   }
  
  
  
  1.3       +5 -0      JBossCache/tests/functional/org/jboss/cache/pojo/event/MapTest.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: MapTest.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/tests/functional/org/jboss/cache/pojo/event/MapTest.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- MapTest.java	23 Apr 2007 02:53:23 -0000	1.2
  +++ MapTest.java	23 Apr 2007 13:09:21 -0000	1.3
  @@ -15,6 +15,7 @@
   import org.jboss.cache.pojo.PojoCache;
   import org.jboss.cache.pojo.PojoCacheFactory;
   import org.jboss.cache.pojo.PojoCacheListener;
  +import org.jboss.cache.pojo.notification.ArrayModifyNotification;
   import org.jboss.cache.pojo.notification.AttachNotification;
   import org.jboss.cache.pojo.notification.DetachNotification;
   import org.jboss.cache.pojo.notification.FieldModifyNotification;
  @@ -330,5 +331,9 @@
         public void modify(MapModifyNotification map)
         {
         }
  +
  +      public void modify(ArrayModifyNotification notification)
  +      {
  +      }
      }
   }
  
  
  
  1.3       +5 -0      JBossCache/tests/functional/org/jboss/cache/pojo/event/SetTest.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: SetTest.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/tests/functional/org/jboss/cache/pojo/event/SetTest.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- SetTest.java	23 Apr 2007 02:53:23 -0000	1.2
  +++ SetTest.java	23 Apr 2007 13:09:21 -0000	1.3
  @@ -15,6 +15,7 @@
   import org.jboss.cache.pojo.PojoCache;
   import org.jboss.cache.pojo.PojoCacheFactory;
   import org.jboss.cache.pojo.PojoCacheListener;
  +import org.jboss.cache.pojo.notification.ArrayModifyNotification;
   import org.jboss.cache.pojo.notification.AttachNotification;
   import org.jboss.cache.pojo.notification.DetachNotification;
   import org.jboss.cache.pojo.notification.FieldModifyNotification;
  @@ -332,5 +333,9 @@
         public void modify(MapModifyNotification map)
         {
         }
  +
  +      public void modify(ArrayModifyNotification notification)
  +      {
  +      }
      }
   }
  
  
  



More information about the jboss-cvs-commits mailing list