Author: jcarman Date: Mon Oct 17 07:51:30 2005 New Revision: 325902 URL: http://svn.apache.org/viewcvs?rev=325902&view=rev Log: Updated JavaDocs
Added: jakarta/commons/sandbox/proxy/trunk/src/java/org/apache/commons/proxy/Invocation.java (with props) Added: jakarta/commons/sandbox/proxy/trunk/src/java/org/apache/commons/proxy/Invocation.java URL: http://svn.apache.org/viewcvs/jakarta/commons/sandbox/proxy/trunk/src/java/org/apache/commons/proxy/Invocation.java?rev=325902&view=auto ============================================================================== --- jakarta/commons/sandbox/proxy/trunk/src/java/org/apache/commons/proxy/Invocation.java (added) +++ jakarta/commons/sandbox/proxy/trunk/src/java/org/apache/commons/proxy/Invocation.java Mon Oct 17 07:51:30 2005 @@ -0,0 +1,33 @@ +/* $Id$ + * + * Copyright 2005 The Apache Software Foundation. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.commons.proxy; + +import java.lang.reflect.Method; + +/** + * Represents a method invocation. + * + * @author James Carman + * @version 1.0 + */ +public interface Invocation +{ + public Method getMethod(); + public Object[] getArguments(); + public Object getProxy(); + public Object proceed() throws Throwable; +} Propchange: jakarta/commons/sandbox/proxy/trunk/src/java/org/apache/commons/proxy/Invocation.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: jakarta/commons/sandbox/proxy/trunk/src/java/org/apache/commons/proxy/Invocation.java ------------------------------------------------------------------------------ svn:keywords = Id --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]