blob: 3cbff571a45462313acf8b2f8891f9df033b4d77 [file] [log] [blame]
package org.eclipse.jem.internal.proxy.ide;
/*******************************************************************************
* 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 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: IIDEBeanProxy.java,v $
* $Revision: 1.2 $ $Date: 2005/02/15 22:57:26 $
*/
import org.eclipse.jem.internal.proxy.core.IBeanProxy;
/**
* Interface that allows the IDE VM to get the actual bean.
*/
public interface IIDEBeanProxy extends IBeanProxy {
/**
* Get the actual live bean.
* USE with extreme care.
*/
public Object getBean();
}