blob: daa75ef4f54d4aeefb566f5e11ec1749411eaab4 [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.ide.awt;
/*
*/
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);
}
}