[multiple changes]
2005-02-16 Mark Wielaard <mark@klomp.org> * Makefile.am (gnu_xml_source_files): Removed gnu/xml/dom/DomCDATA.java, gnu/xml/dom/DomEx.java, gnu/xml/dom/DomFragment.java, gnu/xml/dom/DomPI.java and gnu/xml/dom/ls/DomLSEx.java. Replaced by adding gnu/xml/dom/DomCDATASection.java, gnu/xml/dom/DomDOMException.java, gnu/xml/dom/DomDocumentFragment.java, gnu/xml/dom/DomProcessingInstruction.java and gnu/xml/dom/ls/DomLSException.java. * Makefile.in: Regenerated. 2005-02-16 Tom Tromey <tromey@redhat.com> * gnu/xml/aelfred2/SAXDriver.java: Ensure that null is returned when attribute index is out of bounds. 2005-02-16 Chris Burdess <dog@gnu.org> * gnu/xml/aelfred2/SAXDriver.java: Corrected implementation of isDeclared methods. Improved performance of isSpecified methods. 2005-02-16 Chris Burdess <dog@gnu.org> Fixes bug libgcj/19864 * gnu/xml/dom/DomAttr.java, gnu/xml/dom/DomCDATA.java, gnu/xml/dom/DomCDATASection.java, gnu/xml/dom/DomCharacterData.java, gnu/xml/dom/DomDOMException.java, gnu/xml/dom/DomDoctype.java, gnu/xml/dom/DomDocument.java, gnu/xml/dom/DomDocumentConfiguration.java, gnu/xml/dom/DomDocumentFragment.java, gnu/xml/dom/DomElement.java, gnu/xml/dom/DomEx.java, gnu/xml/dom/DomFragment.java, gnu/xml/dom/DomImpl.java, gnu/xml/dom/DomIterator.java, gnu/xml/dom/DomNamedNodeMap.java, gnu/xml/dom/DomNode.java, gnu/xml/dom/DomNsNode.java, gnu/xml/dom/DomPI.java, gnu/xml/dom/DomProcessingInstruction.java, gnu/xml/dom/DomText.java, gnu/xml/dom/DomLSEx.java, gnu/xml/dom/DomLSException.java, gnu/xml/dom/DomLSParser.java, gnu/xml/dom/DomLSSerializer.java: Refactoring of exception and DOM implementation class names to conform to Classpath guidelines. Make DomLSException use JDK 1.4+ exception chaining. * gnu/xml/util/SAXNullTransformerFactory.java, gnu/xml/xpath/Predicate.java: Use constants relative to declaring class or interface. From-SVN: r95114
This commit is contained in:
parent
3bd09563e1
commit
7526f35528
25 changed files with 400 additions and 302 deletions
|
@ -635,7 +635,8 @@ public class SAXNullTransformerFactory extends SAXTransformerFactory
|
|||
// preserve original namespace prefixes
|
||||
try
|
||||
{
|
||||
producer.setFeature(handler.FEATURE_URI + "namespace-prefixes",
|
||||
producer.setFeature(EventFilter.FEATURE_URI +
|
||||
"namespace-prefixes",
|
||||
true);
|
||||
}
|
||||
catch (Exception e)
|
||||
|
@ -646,7 +647,7 @@ public class SAXNullTransformerFactory extends SAXTransformerFactory
|
|||
|
||||
// arrange the output
|
||||
handler.setResult (out);
|
||||
handler.bind (producer, handler);
|
||||
EventFilter.bind (producer, handler);
|
||||
|
||||
// then parse ... single element pipeline
|
||||
producer.parse (input);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue