package com.javaworld.JavaBeans.XMLBeans; import java.lang.reflect.*; import java.beans.*; /** * Just like java.beans.SimpleBeanInfo, but fixes an IBM VAJava bug. */ public class XMLSimpleBeanInfo implements java.beans.BeanInfo { /** * getAdditionalBeanInfo method comment. */ public java.beans.BeanInfo[] getAdditionalBeanInfo() { return null; } /** * getBeanDescriptor method comment. */ public java.beans.BeanDescriptor getBeanDescriptor() { return null; } /** * This method only necessary because of a bug in * IBM's implementation of SimpleBeanInfo (VisualAge for Java * Professional 2.0) * @return int */ public int getDefaultEventIndex() { return -1; } /** * This method only necessary because of a bug in * IBM's implementation of SimpleBeanInfo (VisualAge for Java * Professional 2.0) * @return int */ public int getDefaultPropertyIndex() { return -1; } /** * getEventSetDescriptors method comment. */ public java.beans.EventSetDescriptor[] getEventSetDescriptors() { return null; } /** * getIcon method comment. */ public java.awt.Image getIcon(int iconKind) { return null; } /** * getMethodDescriptors method comment. */ public java.beans.MethodDescriptor[] getMethodDescriptors() { return null; } /** * getPropertyDescriptors method comment. */ public java.beans.PropertyDescriptor[] getPropertyDescriptors() { return null; } }