Polish Javadoc

This commit is contained in:
Sam Brannen
2014-10-23 01:06:01 +02:00
parent a011b360d1
commit 4412bc68aa
9 changed files with 60 additions and 60 deletions

View File

@@ -27,7 +27,7 @@ import java.util.Set;
public interface BasicOperation {
/**
* Return the cache name(s) associated to the operation.
* Return the cache name(s) associated with the operation.
*/
Set<String> getCacheNames();

View File

@@ -19,10 +19,10 @@ package org.springframework.cache.interceptor;
import java.lang.reflect.Method;
/**
* Represent the context of the invocation of a cache operation.
* Representation of the context of the invocation of a cache operation.
*
* <p>The cache operation is static and independent of a particular invocation,
* this gathers the operation and a particular invocation.
* <p>The cache operation is static and independent of a particular invocation;
* this interface gathers the operation and a particular invocation.
*
* @author Stephane Nicoll
* @since 4.1
@@ -30,22 +30,22 @@ import java.lang.reflect.Method;
public interface CacheOperationInvocationContext<O extends BasicOperation> {
/**
* Return the cache operation
* Return the cache operation.
*/
O getOperation();
/**
* Return the target instance on which the method was invoked
* Return the target instance on which the method was invoked.
*/
Object getTarget();
/**
* Return the method
* Return the method which was invoked.
*/
Method getMethod();
/**
* Return the argument used to invoke the method
* Return the argument list used to invoke the method.
*/
Object[] getArgs();