blob: c6121e9483188ad209fb282a9d940bf4fd50739f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2001, 2005 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
/*
* $RCSfile: IMethodProxy.java,v $
* $Revision: 1.7 $ $Date: 2005/08/24 20:39:05 $
*/
package org.eclipse.jem.internal.proxy.core;
/**
* Interface for Method Proxies Creation date: (12/3/99 11:36:29 AM)
*
* @author: Joe Winchester
*/
public interface IMethodProxy extends IAccessibleObjectProxy, IInvokable, IProxyMethod {
/**
* Answer the class the method is defined in. Creation date: (12/3/99 11:37:12 AM)
*
* @author Joe Winchester
*/
IBeanTypeProxy getClassType();
/**
* Answer the name of the method Creation date: (12/3/99 11:37:12 AM)
*
* @author Joe Winchester
*/
String getName();
/**
* Answer the parameter types of the method Creation date: (12/3/99 11:37:12 AM)
*
* @author Joe Winchester
*/
IBeanTypeProxy[] getParameterTypes();
/**
* Answer the return type of the method Creation date: (12/3/99 11:37:12 AM)
*
* @author Joe Winchester
*/
IBeanTypeProxy getReturnType();
}