blob: b2fa50c125e05bec1d4003032fad9d08f95c0188 [file] [log] [blame]
package org.eclipse.jem.internal.beaninfo.vm;
/*******************************************************************************
* Copyright (c) 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: ModelingBeanInfoPre14.java,v $
* $Revision: 1.1 $ $Date: 2003/10/27 17:17:59 $
*/
import java.beans.BeanInfo;
/**
* This is the modeling BeanInfo for Pre-JDK 1.4.
*/
public class ModelingBeanInfoPre14 extends ModelingBeanInfo {
public ModelingBeanInfoPre14(BeanInfo beanInfo) {
super(beanInfo);
}
public ModelingBeanInfoPre14(BeanInfo beanInfo, BeanInfo superBeanInfo) {
super(beanInfo, superBeanInfo);
}
}