* to determine the correct prefix for a given namespace URI.
*/
public void toSAX(ContentHandler contentHandler, LexicalHandler lexicalHandler,
NamespaceSupport namespaces) throws SAXException
{
AttributeMap attributes = new AttributeMap();
attributes.put(A_ELEMENT, element);
if (this.qualifier != null)
{
attributes.put(A_QUALIFIER, qualifier);
}
if (this.language != null)
{
attributes.put(A_LANGUAGE, language);
}
startElement(contentHandler, namespaces, E_METADATA, attributes);
super.toSAX(contentHandler, lexicalHandler, namespaces);
endElement(contentHandler, namespaces, E_METADATA);