XMLSimpleBeanInfo.java
001 package com.javaworld.JavaBeans.XMLBeans;
002 
003 import java.lang.reflect.*;
004 import java.beans.*;
005 
006 /**
007  * Just like java.beans.SimpleBeanInfo, but fixes an IBM VAJava bug.
008  */
009 public class XMLSimpleBeanInfo implements java.beans.BeanInfo {
010 /**
011  * getAdditionalBeanInfo method comment.
012  */
013 public java.beans.BeanInfo[] getAdditionalBeanInfo() {
014 	return null;
015 }
016 /**
017  * getBeanDescriptor method comment.
018  */
019 public java.beans.BeanDescriptor getBeanDescriptor() {
020 	return null;
021 }
022 /**
023  * This method only necessary because of a bug in
024  * IBM's implementation of SimpleBeanInfo (VisualAge for Java
025  * Professional 2.0)
026  * @return int
027  */
028 public int getDefaultEventIndex() {
029 	return -1;
030 }
031 /**
032  * This method only necessary because of a bug in
033  * IBM's implementation of SimpleBeanInfo (VisualAge for Java
034  * Professional 2.0)
035  * @return int
036  */
037 public int getDefaultPropertyIndex() {
038 	return -1;
039 }
040 /**
041  * getEventSetDescriptors method comment.
042  */
043 public java.beans.EventSetDescriptor[] getEventSetDescriptors() {
044 	return null;
045 }
046 /**
047  * getIcon method comment.
048  */
049 public java.awt.Image getIcon(int iconKind) {
050 	return null;
051 }
052 /**
053  * getMethodDescriptors method comment.
054  */
055 public java.beans.MethodDescriptor[] getMethodDescriptors() {
056 	return null;
057 }
058 /**
059  * getPropertyDescriptors method comment.
060  */
061 public java.beans.PropertyDescriptor[] getPropertyDescriptors() {
062 	return null;
063 }
064 }