package urlhexdump; import java.beans.*; public class UrlHexDumpBeanInfo extends SimpleBeanInfo { public PropertyDescriptor[] getPropertyDescriptors() { try { PropertyDescriptor pd1 = new PropertyDescriptor("url", UrlHexDump.class); // other properties... return new PropertyDescriptor[] { pd1, ... }; } catch (Exception e) { return null; } } }