boolean content) throws WBSAXException {
String name = element.getName();
boolean attributes = element.getAttributes() != null;
// If we have a registered code for this element
ElementNameCode nameCode = context.getElementNames().create(name);
WBSAXContentHandler contentHandler = context.getContentHandler();
if (nameCode != null) {
// Start the element with the name code
contentHandler.startElement(nameCode, attributes, content);
} else {