blob: 605eea0342d998ed9c7991ef26ce5d13451698ab [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;
/*
*/
import org.eclipse.jem.internal.proxy.core.*;
/**
* Long BeanType Proxy.
*/
final class IDELongClassBeanTypeProxy extends IDENumberBeanTypeProxy {
protected IDELongClassBeanTypeProxy(IDEProxyFactoryRegistry aRegistry, Class aClass) {
super(aRegistry, aClass, new Long(0));
}
INumberBeanProxy createLongBeanProxy(Long aLong){
return new IDENumberBeanProxy(fProxyFactoryRegistry,aLong,this);
}
}