protected abstract String getStylesheetOptionID();
static Object EXPORT_JOB_FAMILY = new String("Export job family");
public ExporterBase() {
final Stylesheet[] stylesheets = getStylesheets();
EnumerationOption stylesheetOption= createStylesheetOption(getStylesheetOptionID(), stylesheets);
stylesheetOption.lock();
stylesheetOption.setValue(stylesheets[0].getLocalizedName());
stylesheetOption.commit();
myOptions = new GPOptionGroup("exporter.html", new GPOption[] {stylesheetOption});
myOptions.setTitled(false);
}