blob: e98a622a28933587617dae826663a7cd863e2f10 [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 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
*******************************************************************************/
/*
*/
package org.eclipse.jem.internal.proxy.ide.awt;
import org.eclipse.jem.internal.proxy.core.*;
import org.eclipse.jem.internal.proxy.ide.*;
/**
* BeanType factory standard AWT bean types. This is package protected because it shouldn't be referenced outside the package. It should only be
* accessed through the interface.
*/
class IDEStandardAWTBeanTypeProxyFactory implements IDEExtensionBeanTypeProxyFactory {
static final String BEAN_TYPE_FACTORY_KEY = "java.awt"; //$NON-NLS-1$
protected final IDEProxyFactoryRegistry fFactoryRegistry;
protected final IDEDimensionBeanTypeProxy dimensionType;
protected final IDEPointBeanTypeProxy pointType;
protected final IDERectangleBeanTypeProxy rectangleType;
IDEStandardAWTBeanTypeProxyFactory(IDEProxyFactoryRegistry aRegistry) {
fFactoryRegistry = aRegistry;
fFactoryRegistry.registerBeanTypeProxyFactory(BEAN_TYPE_FACTORY_KEY, this);
dimensionType = new IDEDimensionBeanTypeProxy(fFactoryRegistry);
pointType = new IDEPointBeanTypeProxy(fFactoryRegistry);
rectangleType = new IDERectangleBeanTypeProxy(fFactoryRegistry);
}
/*
* (non-Javadoc)
* @see org.eclipse.jem.internal.proxy.ide.IDEExtensionBeanTypeProxyFactory#getExtensionBeanTypeProxy(java.lang.String)
*/
public IDEBeanTypeProxy getExtensionBeanTypeProxy(String className) {
if ("java.awt.Dimension".equals(className)) //$NON-NLS-1$
return dimensionType;
else if ("java.awt.Point".equals(className)) //$NON-NLS-1$
return pointType;
else if ("java.awt.Rectangle".equals(className)) //$NON-NLS-1$
return rectangleType;
else
return null;
}
/*
* (non-Javadoc)
* @see org.eclipse.jem.internal.proxy.ide.IDEExtensionBeanTypeProxyFactory#getExtensionBeanTypeProxy(java.lang.String, org.eclipse.jem.internal.proxy.core.IBeanTypeProxy)
*/
public IDEBeanTypeProxy getExtensionBeanTypeProxy(String className, IBeanTypeProxy beanTypeProxy) {
return getExtensionBeanTypeProxy(className);
}
/*
* (non-Javadoc)
*
* @see org.eclipse.jem.internal.proxy.ide.IDEExtensionBeanTypeProxyFactory#getExtensionBeanTypeProxy(java.lang.String,
* org.eclipse.jem.internal.proxy.core.IExpression)
*/
public IProxyBeanType getExtensionBeanTypeProxy(String typeName, IExpression expression) {
return getExtensionBeanTypeProxy(typeName);
}
/*
* (non-Javadoc)
* @see org.eclipse.jem.internal.proxy.core.IBeanProxyFactory#terminateFactory(boolean)
*/
public void terminateFactory(boolean wait) {
}
}