How do I register a customizer for a JavaBean component?
Location: http://www.jguru.com/faq/view.jsp?EID=25304 Created: Mar 16, 2000 Modified: 2000-03-16 23:47:02.188 Author: John Zukowski (http://www.jguru.com/guru/viewbio.jsp?EID=7) In the BeanInfo for a component, you associate the customizer with the bean by creating a BeanDescriptor and returning it from the getBeanDescriptor() method. public class HireBeanInfo extends SimpleBeanInfo { public BeanDescriptor getBeanDescriptor() { return new BeanDescriptor( Hire.class, HireCustomizer.class); } …