PropertyDescriptor[] descriptors = null;
//System.out.println("Enter to getPropertyDescriptors()");
try {
PropertyDescriptor myOutput_FormatDescriptor
= new PropertyDescriptor("Output_Format", GenericDocOptioner.class);
myOutput_FormatDescriptor.setPropertyEditorClass(Output_FormatEditor.class);
descriptors = new PropertyDescriptor[]
{
new PropertyDescriptor("Include_Hyperlinked_Files_As_Text", GenericDocOptioner.class),
new PropertyDescriptor("Regenerate_GIF_Pictures", GenericDocOptioner.class),
myOutput_FormatDescriptor,
new PropertyDescriptor("Start_From_Root", GenericDocOptioner.class),
};
}
catch(IntrospectionException e) {
e.printStackTrace();
}
return descriptors;