blob: 63e9ad68df12021c6c71f7f4368d7eea37a9fe4f [file] [log] [blame]
package org.eclipse.jem.internal.proxy.ide.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 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: IDEDimensionBeanTypeProxy.java,v $
* $Revision: 1.2 $ $Date: 2004/02/03 23:18:36 $
*/
import java.awt.Dimension;
import org.eclipse.jem.internal.proxy.ide.*;
public class IDEDimensionBeanTypeProxy extends IDEBeanTypeProxy {
IDEDimensionBeanTypeProxy(IDEProxyFactoryRegistry aRegistry){
this(aRegistry,Dimension.class);
}
private IDEDimensionBeanTypeProxy(IDEProxyFactoryRegistry aRegistry, Class type){
super(aRegistry, type);
}
protected IIDEBeanProxy newBeanProxy(Object anObject){
return new IDEDimensionBeanProxy(fProxyFactoryRegistry, anObject, this);
}
IDEDimensionBeanProxy createDimensionBeanProxy(int width, int height){
return new IDEDimensionBeanProxy(fProxyFactoryRegistry,new Dimension(width,height),this);
}
/*
* @see IDEBeanTypeProxy#newBeanTypeForClass(Class)
*/
public IDEBeanTypeProxy newBeanTypeForClass(Class type) {
return new IDEDimensionBeanTypeProxy(fProxyFactoryRegistry, type);
}
}