FileDocCategorySizeDatePackage
GenericDocOptionerBeanInfo.javaAPI DocExample1173Tue Dec 08 01:21:00 GMT 1998oisoft.togetherx.scripts.doc

GenericDocOptionerBeanInfo

public class GenericDocOptionerBeanInfo extends SimpleBeanInfo

Fields Summary
Constructors Summary
Methods Summary
public java.beans.PropertyDescriptor[]getPropertyDescriptors()

    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;