blob: b72e167ac97836090ff4f921c7cfe57efa28de27 [file] [log] [blame]
package org.eclipse.jem.internal.proxy.core;
/*******************************************************************************
* Copyright (c) 2001, 2003 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
/*
* $RCSfile: IConstructorProxy.java,v $
* $Revision: 1.2 $ $Date: 2004/01/12 21:44:26 $
*/
/**
* This is a proxy that allows a constructor to exist in the target VM
* and be referenced in the IDE VM
* Creation date: (1/17/00 1:21:52 PM)
* @author: Joe Winchester
*/
public interface IConstructorProxy extends IAccessibleObjectProxy {
/**
* Return a new instance with no creation arguments,
* i.e. for a null constructor
* Creation date: (1/17/00 1:22:11 PM)
*/
IBeanProxy newInstance() throws ThrowableProxy;
/**
* Return a new instance with the specified creation arguments
* Creation date: (1/17/00 1:22:11 PM)
*/
IBeanProxy newInstance(IBeanProxy[] creationArguments) throws ThrowableProxy;
IBeanProxy newInstanceCatchThrowableExceptions();
IBeanProxy newInstanceCatchThrowableExceptions(IBeanProxy[] creationArguments);
}