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

Manik Surtani manik at jboss.org
Tue Jul 17 10:52:18 EDT 2007


  User: msurtani
  Date: 07/07/17 10:52:18

  Modified:    src/org/jboss/cache  Cache.java
  Log:
  javadoc
  
  Revision  Changes    Path
  1.31      +4 -4      JBossCache/src/org/jboss/cache/Cache.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: Cache.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/Cache.java,v
  retrieving revision 1.30
  retrieving revision 1.31
  diff -u -b -r1.30 -r1.31
  --- Cache.java	28 Jun 2007 16:53:35 -0000	1.30
  +++ Cache.java	17 Jul 2007 14:52:18 -0000	1.31
  @@ -95,7 +95,7 @@
      Node<K, V> getRoot();
   
      /**
  -    * Adds a {@link CacheListener} to the entire cache.  The object passed in needs to be properly annotated with the
  +    * Adds a {@link @org.jboss.cache.notifications.annotation.CacheListener}-annotated object to the entire cache.  The object passed in needs to be properly annotated with the
       * {@link @org.jboss.cache.notifications.annotation.CacheListener} annotation otherwise an {@link org.jboss.cache.notifications.IncorrectCacheListenerException} will be thrown.
       *
       * @param listener listener to add
  @@ -103,7 +103,7 @@
      void addCacheListener(Object listener);
   
      /**
  -    * Adds a {@link CacheListener} to a given region.  The object passed in needs to be properly annotated with the
  +    * Adds a {@link @org.jboss.cache.notifications.annotation.CacheListener}-annotated object to a given region.  The object passed in needs to be properly annotated with the
       * {@link @org.jboss.cache.notifications.annotation.CacheListener} annotation otherwise an {@link org.jboss.cache.notifications.IncorrectCacheListenerException} will be thrown.
       *
       * @param region   region to add listener to
  @@ -112,7 +112,7 @@
      void addCacheListener(Fqn<?> region, Object listener);
   
      /**
  -    * Removes a {@link CacheListener} from the cache.  The object passed in needs to be properly annotated with the
  +    * Removes a {@link @org.jboss.cache.notifications.annotation.CacheListener}-annotated object from the cache.  The object passed in needs to be properly annotated with the
       * {@link @org.jboss.cache.notifications.annotation.CacheListener} annotation otherwise an {@link org.jboss.cache.notifications.IncorrectCacheListenerException} will be thrown.
       *
       * @param listener listener to remove
  @@ -120,7 +120,7 @@
      void removeCacheListener(Object listener);
   
      /**
  -    * Removes a {@link CacheListener} from a given region.  The object passed in needs to be properly annotated with the
  +    * Removes a {@link @org.jboss.cache.notifications.annotation.CacheListener}-annotated object from a given region.  The object passed in needs to be properly annotated with the
       * {@link @org.jboss.cache.notifications.annotation.CacheListener} annotation otherwise an {@link org.jboss.cache.notifications.IncorrectCacheListenerException} will be thrown.
       *
       * @param region   region from which to remove listener
  
  
  



More information about the jboss-cvs-commits mailing list