[jbosscache-commits] JBoss Cache SVN: r5118 - core/trunk/src/main/java/org/jboss/cache.

jbosscache-commits at lists.jboss.org jbosscache-commits at lists.jboss.org
Fri Jan 11 10:54:20 EST 2008


Author: bstansberry at jboss.com
Date: 2008-01-11 10:54:20 -0500 (Fri, 11 Jan 2008)
New Revision: 5118

Modified:
   core/trunk/src/main/java/org/jboss/cache/Cache.java
Log:
Javadoc @link fixes

Modified: core/trunk/src/main/java/org/jboss/cache/Cache.java
===================================================================
--- core/trunk/src/main/java/org/jboss/cache/Cache.java	2008-01-11 14:32:29 UTC (rev 5117)
+++ core/trunk/src/main/java/org/jboss/cache/Cache.java	2008-01-11 15:54:20 UTC (rev 5118)
@@ -95,16 +95,16 @@
    Node<K, V> getRoot();
 
    /**
-    * 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.
+    * 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
     */
    void addCacheListener(Object listener);
 
    /**
-    * 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.
+    * 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
     * @param listener listener to add
@@ -112,16 +112,16 @@
    void addCacheListener(Fqn<?> region, Object listener);
 
    /**
-    * 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.
+    * 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
     */
    void removeCacheListener(Object listener);
 
    /**
-    * 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.
+    * 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
     * @param listener listener to remove




More information about the jbosscache-commits mailing list