Index Property

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

package sunw.demo.

colors;
import java.beans.*;
public class ColorsBeanInfo extends SimpleBeanInfo
{
public PropertyDescriptor[] getPropertyDescriptors()
{
try {
PropertyDescriptor rectangular = new
PropertyDescriptor("rectangular",Colors.class); PropertyDescriptor pd[] =
{rectangular};
return pd;
}
catch(Exception e) { }
return null;
}
}

You might also like