You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by jc...@apache.org on 2006/04/14 15:13:34 UTC

svn commit: r394083 - /jakarta/commons/sandbox/proxy/trunk/src/java/org/apache/commons/proxy/Invoker.java

Author: jcarman
Date: Fri Apr 14 06:13:32 2006
New Revision: 394083

URL: http://svn.apache.org/viewcvs?rev=394083&view=rev
Log:
Added JavaDoc

Modified:
    jakarta/commons/sandbox/proxy/trunk/src/java/org/apache/commons/proxy/Invoker.java

Modified: jakarta/commons/sandbox/proxy/trunk/src/java/org/apache/commons/proxy/Invoker.java
URL: http://svn.apache.org/viewcvs/jakarta/commons/sandbox/proxy/trunk/src/java/org/apache/commons/proxy/Invoker.java?rev=394083&r1=394082&r2=394083&view=diff
==============================================================================
--- jakarta/commons/sandbox/proxy/trunk/src/java/org/apache/commons/proxy/Invoker.java (original)
+++ jakarta/commons/sandbox/proxy/trunk/src/java/org/apache/commons/proxy/Invoker.java Fri Apr 14 06:13:32 2006
@@ -26,5 +26,14 @@
  */
 public interface Invoker
 {
+    /**
+     * "Invokes" the method.  Implementation should throw a {@link org.apache.commons.proxy.exception.InvokerException}
+     * if problems arise while trying to invoke the method.
+     * @param proxy the proxy object
+     * @param method the method being invoked
+     * @param arguments the arguments
+     * @return the return value
+     * @throws Throwable thrown by the implementation
+     */
     public Object invoke( Object proxy, Method method, Object[] arguments ) throws Throwable;
 }



---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org