contentHandler.startDocument();
contentHandler.startPrefixMapping(FormsConstants.INSTANCE_PREFIX, FormsConstants.INSTANCE_NS);
Attributes formAtts = this.config.getFormAttributes();
contentHandler.startElement(FormsConstants.INSTANCE_NS, FORM_GENERATED_EL, FormsConstants.INSTANCE_PREFIX_COLON +FORM_GENERATED_EL, formAtts);
Form form = config.findForm();
form.generateSaxFragment(contentHandler, Locale.US);
contentHandler.endElement(FormsConstants.INSTANCE_NS, FORM_GENERATED_EL, FormsConstants.INSTANCE_PREFIX_COLON +FORM_GENERATED_EL);
contentHandler.endPrefixMapping(FormsConstants.INSTANCE_PREFIX);
contentHandler.endDocument();
}