From e769f2c0cc39b4102436b4d57727a46f60ed8ef7 Mon Sep 17 00:00:00 2001 From: Michi Henning Date: Wed, 8 Jul 2009 07:30:19 +1000 Subject: Bug 3502: More cleanup for new javadoc syntax. --- java/src/IceUtil/Cache.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'java/src/IceUtil/Cache.java') diff --git a/java/src/IceUtil/Cache.java b/java/src/IceUtil/Cache.java index 2fc00d10816..f983f394d80 100644 --- a/java/src/IceUtil/Cache.java +++ b/java/src/IceUtil/Cache.java @@ -36,9 +36,9 @@ public class Cache * * @return If the cache contains an entry for the key, the return value * is the object corresponding to the key; otherwise, the return value - * is null. getIfPinned does not call load. + * is null. getIfPinned does not call {@link Store#load}. * - * @see Store.load + * @see Store#load **/ public Object getIfPinned(Object key) @@ -97,7 +97,7 @@ public class Cache /** * Adds a key-value pair to the cache. - * This version of pin does not call Store.load to retrieve + * This version of pin does not call {@link Store#load} to retrieve * an entry from backing store if an entry for the given key is not yet in the cache. This * is useful to add a newly-created object to the cache. * @@ -128,13 +128,13 @@ public class Cache /** * Returns an object from the cache. * If no entry with the given key is in the cache, pin calls - * load to retrieve the corresponding value (if any) from the + * {@link Store#load} to retrieve the corresponding value (if any) from the * backing store. * * @param key The key for the entry to retrieve. * @return Returns the value for the corresponding key if the cache * contains an entry for the key. Otherwise, pin(Object) calls - * Store.load and the return value is whatever is returned by + * {@link Store#load} and the return value is whatever is returned by * load; if load throws an exception, that exception * is thrown by pin(Object). **/ @@ -151,7 +151,7 @@ public class Cache * @return If the cache already contains an entry for the given key, * putIfAbsent returns the original value for that key. * If no entry is for the given key is in the cache, putIfAbsent - * calls load to retrieve the corresponding entry (if any) from + * calls {@link Store#load} to retrieve the corresponding entry (if any) from * the backings store and returns the value returned by load. * If the cache does not contain an entry for the given key and load * does not return a value for the key, putIfAbsent adds the new entry -- cgit v1.2.3