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
10 changed files with 33 additions and 17 deletions
|
@ -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>
|
||||
|
||||
* java/awt/MenuComponent.java: Import java.io.Serialization.
|
||||
|
|
|
@ -38,8 +38,6 @@ exception statement from your version. */
|
|||
|
||||
package java.beans;
|
||||
|
||||
import java.util.*;
|
||||
|
||||
/**
|
||||
** BeanDescriptor describes general information about a Bean, plus
|
||||
** stores the Bean's Class and it's customizer's Class.<P>
|
||||
|
|
|
@ -38,9 +38,10 @@ exception statement from your version. */
|
|||
|
||||
package java.beans;
|
||||
|
||||
import java.util.*;
|
||||
import java.lang.reflect.*;
|
||||
import gnu.java.lang.*;
|
||||
import java.lang.reflect.Method;
|
||||
import java.lang.reflect.Modifier;
|
||||
import java.util.Vector;
|
||||
import gnu.java.lang.ClassHelper;
|
||||
|
||||
/**
|
||||
** EventSetDescriptor describes the hookup between an event source
|
||||
|
|
|
@ -38,7 +38,8 @@ exception statement from your version. */
|
|||
|
||||
package java.beans;
|
||||
|
||||
import java.util.*;
|
||||
import java.util.Enumeration;
|
||||
import java.util.Hashtable;
|
||||
|
||||
/**
|
||||
* FeatureDescriptor is the common superclass for all JavaBeans Descriptor
|
||||
|
|
|
@ -38,8 +38,8 @@ exception statement from your version. */
|
|||
|
||||
package java.beans;
|
||||
|
||||
import java.util.*;
|
||||
import java.lang.reflect.*;
|
||||
import java.lang.reflect.Array;
|
||||
import java.lang.reflect.Method;
|
||||
|
||||
/**
|
||||
** IndexedPropertyDescriptor describes information about a JavaBean
|
||||
|
|
|
@ -38,10 +38,12 @@ exception statement from your version. */
|
|||
|
||||
package java.beans;
|
||||
|
||||
import gnu.java.beans.*;
|
||||
import java.util.*;
|
||||
import java.lang.reflect.*;
|
||||
import gnu.java.lang.*;
|
||||
import gnu.java.beans.BeanInfoEmbryo;
|
||||
import gnu.java.beans.ExplicitBeanInfo;
|
||||
import gnu.java.beans.IntrospectionIncubator;
|
||||
import java.util.Hashtable;
|
||||
import java.util.Vector;
|
||||
import gnu.java.lang.ClassHelper;
|
||||
|
||||
/**
|
||||
* Introspector is the class that does the bulk of the
|
||||
|
|
|
@ -38,7 +38,7 @@ exception statement from your version. */
|
|||
|
||||
package java.beans;
|
||||
|
||||
import java.lang.reflect.*;
|
||||
import java.lang.reflect.Method;
|
||||
|
||||
/** MethodDescriptor describes information about a JavaBeans method.
|
||||
** It's a fairly straightforward class (at least something in this
|
||||
|
|
|
@ -38,9 +38,7 @@ exception statement from your version. */
|
|||
|
||||
package java.beans;
|
||||
|
||||
import java.util.*;
|
||||
import java.lang.reflect.*;
|
||||
|
||||
import java.lang.reflect.Method;
|
||||
|
||||
/**
|
||||
** PropertyDescriptor describes information about a JavaBean property,
|
||||
|
|
|
@ -38,7 +38,8 @@ exception statement from your version. */
|
|||
|
||||
package java.beans;
|
||||
|
||||
import java.awt.*;
|
||||
import java.awt.Image;
|
||||
import java.awt.Toolkit;
|
||||
|
||||
/**
|
||||
** SimpleBeanInfo is a class you may extend to more easily
|
||||
|
|
|
@ -100,6 +100,8 @@ public class BeanContextServicesSupport
|
|||
protected static class BCSSServiceProvider
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = 861278251667444782L;
|
||||
|
||||
protected BeanContextServiceProvider serviceProvider;
|
||||
|
||||
protected BeanContextServiceProvider getServiceProvider()
|
||||
|
|
Loading…
Add table
Reference in a new issue