blob: 43bb8a5a5c2bfd0ab32282d333a8ff26bc4a29a7 [file] [log] [blame]
package org.eclipse.jem.internal.proxy.awt;
/*******************************************************************************
* 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: IStandardAwtBeanProxyFactory.java,v $
* $Revision: 1.3 $ $Date: 2005/05/11 19:01:12 $
*/
import org.eclipse.jem.internal.proxy.core.*;
import org.eclipse.jem.internal.proxy.core.IBeanProxyFactory;
/**
* The Standard awt bean proxy factory.
* This is the Interface that the desktop will talk
* to.
* Creation date: (12/3/99 11:52:09 AM)
* @author: Joe Winchester
*/
public interface IStandardAwtBeanProxyFactory extends IBeanProxyFactory {
public static final String REGISTRY_KEY = "standard-java.awt"; //$NON-NLS-1$
/**
* Return a new bean proxy for the dimension argument
* Creation date: (12/3/99 11:52:20 AM)
* @author Joe Winchester
*/
public IDimensionBeanProxy createDimensionBeanProxyWith(int width, int height);
/**
* Return a new bean proxy for the point argument
* Creation date: (12/3/99 11:52:20 AM)
* @author Joe Winchester
*/
public IPointBeanProxy createPointBeanProxyWith(int x, int y);
/**
* Return a new bean proxy for the rectangle argument
* Creation date: (12/3/99 11:52:20 AM)
* @author Joe Winchester
*/
public IRectangleBeanProxy createBeanProxyWith(int x, int y, int width, int height);
}