mirror of git://gcc.gnu.org/git/gcc.git
BeanDescriptor.java, [...]: Explicitely import used classes.
2003-12-04 Michael Koch <konqueror@gmx.de> * java/beans/BeanDescriptor.java, java/beans/EventSetDescriptor.java, java/beans/FeatureDescriptor.java, java/beans/IndexedPropertyDescriptor.java, java/beans/Introspector.java, java/beans/MethodDescriptor.java, java/beans/PropertyDescriptor.java, java/beans/SimpleBeanInfo.java: Explicitely import used classes. * java/beans/beancontext/BeanContextServicesSupport.java (serialVersionUID): New field. From-SVN: r74287
This commit is contained in:
parent
02bec8cb64
commit
cb611e3e83
|
@ -1,3 +1,16 @@
|
||||||
|
2003-12-04 Michael Koch <konqueror@gmx.de>
|
||||||
|
|
||||||
|
* java/beans/BeanDescriptor.java,
|
||||||
|
java/beans/EventSetDescriptor.java,
|
||||||
|
java/beans/FeatureDescriptor.java,
|
||||||
|
java/beans/IndexedPropertyDescriptor.java,
|
||||||
|
java/beans/Introspector.java,
|
||||||
|
java/beans/MethodDescriptor.java,
|
||||||
|
java/beans/PropertyDescriptor.java,
|
||||||
|
java/beans/SimpleBeanInfo.java: Explicitely import used classes.
|
||||||
|
* java/beans/beancontext/BeanContextServicesSupport.java
|
||||||
|
(serialVersionUID): New field.
|
||||||
|
|
||||||
2003-12-04 Michael Koch <konqueror@gmx.de>
|
2003-12-04 Michael Koch <konqueror@gmx.de>
|
||||||
|
|
||||||
* java/awt/MenuComponent.java: Import java.io.Serialization.
|
* java/awt/MenuComponent.java: Import java.io.Serialization.
|
||||||
|
|
|
@ -38,8 +38,6 @@ exception statement from your version. */
|
||||||
|
|
||||||
package java.beans;
|
package java.beans;
|
||||||
|
|
||||||
import java.util.*;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
** BeanDescriptor describes general information about a Bean, plus
|
** BeanDescriptor describes general information about a Bean, plus
|
||||||
** stores the Bean's Class and it's customizer's Class.<P>
|
** stores the Bean's Class and it's customizer's Class.<P>
|
||||||
|
|
|
@ -38,9 +38,10 @@ exception statement from your version. */
|
||||||
|
|
||||||
package java.beans;
|
package java.beans;
|
||||||
|
|
||||||
import java.util.*;
|
import java.lang.reflect.Method;
|
||||||
import java.lang.reflect.*;
|
import java.lang.reflect.Modifier;
|
||||||
import gnu.java.lang.*;
|
import java.util.Vector;
|
||||||
|
import gnu.java.lang.ClassHelper;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
** EventSetDescriptor describes the hookup between an event source
|
** EventSetDescriptor describes the hookup between an event source
|
||||||
|
|
|
@ -38,7 +38,8 @@ exception statement from your version. */
|
||||||
|
|
||||||
package java.beans;
|
package java.beans;
|
||||||
|
|
||||||
import java.util.*;
|
import java.util.Enumeration;
|
||||||
|
import java.util.Hashtable;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* FeatureDescriptor is the common superclass for all JavaBeans Descriptor
|
* FeatureDescriptor is the common superclass for all JavaBeans Descriptor
|
||||||
|
|
|
@ -38,8 +38,8 @@ exception statement from your version. */
|
||||||
|
|
||||||
package java.beans;
|
package java.beans;
|
||||||
|
|
||||||
import java.util.*;
|
import java.lang.reflect.Array;
|
||||||
import java.lang.reflect.*;
|
import java.lang.reflect.Method;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
** IndexedPropertyDescriptor describes information about a JavaBean
|
** IndexedPropertyDescriptor describes information about a JavaBean
|
||||||
|
|
|
@ -38,10 +38,12 @@ exception statement from your version. */
|
||||||
|
|
||||||
package java.beans;
|
package java.beans;
|
||||||
|
|
||||||
import gnu.java.beans.*;
|
import gnu.java.beans.BeanInfoEmbryo;
|
||||||
import java.util.*;
|
import gnu.java.beans.ExplicitBeanInfo;
|
||||||
import java.lang.reflect.*;
|
import gnu.java.beans.IntrospectionIncubator;
|
||||||
import gnu.java.lang.*;
|
import java.util.Hashtable;
|
||||||
|
import java.util.Vector;
|
||||||
|
import gnu.java.lang.ClassHelper;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Introspector is the class that does the bulk of the
|
* Introspector is the class that does the bulk of the
|
||||||
|
|
|
@ -38,7 +38,7 @@ exception statement from your version. */
|
||||||
|
|
||||||
package java.beans;
|
package java.beans;
|
||||||
|
|
||||||
import java.lang.reflect.*;
|
import java.lang.reflect.Method;
|
||||||
|
|
||||||
/** MethodDescriptor describes information about a JavaBeans method.
|
/** MethodDescriptor describes information about a JavaBeans method.
|
||||||
** It's a fairly straightforward class (at least something in this
|
** It's a fairly straightforward class (at least something in this
|
||||||
|
|
|
@ -38,9 +38,7 @@ exception statement from your version. */
|
||||||
|
|
||||||
package java.beans;
|
package java.beans;
|
||||||
|
|
||||||
import java.util.*;
|
import java.lang.reflect.Method;
|
||||||
import java.lang.reflect.*;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
** PropertyDescriptor describes information about a JavaBean property,
|
** PropertyDescriptor describes information about a JavaBean property,
|
||||||
|
|
|
@ -38,7 +38,8 @@ exception statement from your version. */
|
||||||
|
|
||||||
package java.beans;
|
package java.beans;
|
||||||
|
|
||||||
import java.awt.*;
|
import java.awt.Image;
|
||||||
|
import java.awt.Toolkit;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
** SimpleBeanInfo is a class you may extend to more easily
|
** SimpleBeanInfo is a class you may extend to more easily
|
||||||
|
|
|
@ -100,6 +100,8 @@ public class BeanContextServicesSupport
|
||||||
protected static class BCSSServiceProvider
|
protected static class BCSSServiceProvider
|
||||||
implements Serializable
|
implements Serializable
|
||||||
{
|
{
|
||||||
|
private static final long serialVersionUID = 861278251667444782L;
|
||||||
|
|
||||||
protected BeanContextServiceProvider serviceProvider;
|
protected BeanContextServiceProvider serviceProvider;
|
||||||
|
|
||||||
protected BeanContextServiceProvider getServiceProvider()
|
protected BeanContextServiceProvider getServiceProvider()
|
||||||
|
|
Loading…
Reference in New Issue