Hi,
Below is the code for
org.apache.xml.serialzier.ToSAXHandler.startDTD(String, String, String):
/**
* Do nothing.
* @see org.xml.sax.ext.LexicalHandler#startDTD(String, String, String)
*/
public void startDTD(String arg0, String arg1, String arg2)
throws SAXException
{
// do nothing for now
}
I'm curious why "do nothing". Doesn't it make sense to make a callback to
the member LexicalHandler (m_lexHandler) ?
I'm trying to use a SAXResult as my transform target, but my LexicalHandler
is only partially functional now because a callback to startDTD is never
made.
Thank you for any clarification in advance. And I apologize if this belongs
to the users list.
-Naeim