blob: b99e7928612f18adf92cd7974b3f5b66e338d875 [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 v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jem.internal.proxy.remote;
/*
*/
import org.eclipse.jem.internal.proxy.core.*;
/**
* This interface for REMMethodProxy allows the invokation where
* the parms are a mixture of constant objects (i.e. can be sent
* as values to the client) and IBeanProxies. It is only to be
* used by other factories that want to invoke methods where
* some of the parms are constants so that there is no need
* create IBeanProxies for them, e.g. String. This should be
* used with extreme care.
*/
public interface IREMMethodProxy extends IMethodProxy, IREMBeanProxy {
public IBeanProxy invokeWithParms(IBeanProxy subject, Object[] parms) throws ThrowableProxy;
}