sboag 01/04/17 08:55:06
Modified: java/src/org/apache/xml/utils Tag: DTM_EXP TreeWalker.java
Log:
Added setContentHandler, and changed getcontentHandler to
getContentHandler.
Note that there will be conflicts with the main branch with Myriam's
changes for the Locator, that will have to be dealt with.
Revision Changes Path
No revision
No revision
1.7.2.1 +11 -1 xml-xalan/java/src/org/apache/xml/utils/TreeWalker.java
Index: TreeWalker.java
===================================================================
RCS file: /home/cvs/xml-xalan/java/src/org/apache/xml/utils/TreeWalker.java,v
retrieving revision 1.7
retrieving revision 1.7.2.1
diff -u -r1.7 -r1.7.2.1
--- TreeWalker.java 2001/03/13 16:30:53 1.7
+++ TreeWalker.java 2001/04/17 15:55:03 1.7.2.1
@@ -87,9 +87,19 @@
*
* @return the ContentHandler used for the tree walk
*/
- public ContentHandler getcontentHandler()
+ public ContentHandler getContentHandler()
{
return m_contentHandler;
+ }
+
+ /**
+ * Get the ContentHandler used for the tree walk.
+ *
+ * @return the ContentHandler used for the tree walk
+ */
+ public void setContentHandler(ContentHandler ch)
+ {
+ m_contentHandler = ch;
}
/**
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]