Package jp.gr.xml.relax.dom
Interface IDOMVisitor
-
- All Known Implementing Classes:
DOMSAXProducerVisitor
,SAXEventGenerator
,XMLMaker
public interface IDOMVisitor
IDOMVisitor- Since:
- Oct. 7, 2000
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
enter(org.w3c.dom.Attr attr)
boolean
enter(org.w3c.dom.CDATASection cdata)
boolean
enter(org.w3c.dom.Comment comment)
boolean
enter(org.w3c.dom.Document doc)
boolean
enter(org.w3c.dom.DocumentFragment docfrag)
boolean
enter(org.w3c.dom.DocumentType doctype)
boolean
enter(org.w3c.dom.Element element)
boolean
enter(org.w3c.dom.Entity entity)
boolean
enter(org.w3c.dom.EntityReference entityRef)
boolean
enter(org.w3c.dom.Node node)
boolean
enter(org.w3c.dom.Notation notation)
boolean
enter(org.w3c.dom.ProcessingInstruction pi)
boolean
enter(org.w3c.dom.Text text)
void
leave(org.w3c.dom.Attr attr)
void
leave(org.w3c.dom.CDATASection cdata)
void
leave(org.w3c.dom.Comment comment)
void
leave(org.w3c.dom.Document doc)
void
leave(org.w3c.dom.DocumentFragment docfrag)
void
leave(org.w3c.dom.DocumentType doctype)
void
leave(org.w3c.dom.Element element)
void
leave(org.w3c.dom.Entity entity)
void
leave(org.w3c.dom.EntityReference entityRef)
void
leave(org.w3c.dom.Node node)
void
leave(org.w3c.dom.Notation notation)
void
leave(org.w3c.dom.ProcessingInstruction pi)
void
leave(org.w3c.dom.Text text)
-
-
-
Method Detail
-
enter
boolean enter(org.w3c.dom.Element element) throws DOMVisitorException
- Throws:
DOMVisitorException
-
enter
boolean enter(org.w3c.dom.Attr attr) throws DOMVisitorException
- Throws:
DOMVisitorException
-
enter
boolean enter(org.w3c.dom.Text text) throws DOMVisitorException
- Throws:
DOMVisitorException
-
enter
boolean enter(org.w3c.dom.CDATASection cdata) throws DOMVisitorException
- Throws:
DOMVisitorException
-
enter
boolean enter(org.w3c.dom.EntityReference entityRef) throws DOMVisitorException
- Throws:
DOMVisitorException
-
enter
boolean enter(org.w3c.dom.Entity entity) throws DOMVisitorException
- Throws:
DOMVisitorException
-
enter
boolean enter(org.w3c.dom.ProcessingInstruction pi) throws DOMVisitorException
- Throws:
DOMVisitorException
-
enter
boolean enter(org.w3c.dom.Comment comment) throws DOMVisitorException
- Throws:
DOMVisitorException
-
enter
boolean enter(org.w3c.dom.Document doc) throws DOMVisitorException
- Throws:
DOMVisitorException
-
enter
boolean enter(org.w3c.dom.DocumentType doctype) throws DOMVisitorException
- Throws:
DOMVisitorException
-
enter
boolean enter(org.w3c.dom.DocumentFragment docfrag) throws DOMVisitorException
- Throws:
DOMVisitorException
-
enter
boolean enter(org.w3c.dom.Notation notation) throws DOMVisitorException
- Throws:
DOMVisitorException
-
enter
boolean enter(org.w3c.dom.Node node) throws DOMVisitorException
- Throws:
DOMVisitorException
-
leave
void leave(org.w3c.dom.Element element) throws DOMVisitorException
- Throws:
DOMVisitorException
-
leave
void leave(org.w3c.dom.Attr attr) throws DOMVisitorException
- Throws:
DOMVisitorException
-
leave
void leave(org.w3c.dom.Text text) throws DOMVisitorException
- Throws:
DOMVisitorException
-
leave
void leave(org.w3c.dom.CDATASection cdata) throws DOMVisitorException
- Throws:
DOMVisitorException
-
leave
void leave(org.w3c.dom.EntityReference entityRef) throws DOMVisitorException
- Throws:
DOMVisitorException
-
leave
void leave(org.w3c.dom.Entity entity) throws DOMVisitorException
- Throws:
DOMVisitorException
-
leave
void leave(org.w3c.dom.ProcessingInstruction pi) throws DOMVisitorException
- Throws:
DOMVisitorException
-
leave
void leave(org.w3c.dom.Comment comment) throws DOMVisitorException
- Throws:
DOMVisitorException
-
leave
void leave(org.w3c.dom.Document doc) throws DOMVisitorException
- Throws:
DOMVisitorException
-
leave
void leave(org.w3c.dom.DocumentType doctype) throws DOMVisitorException
- Throws:
DOMVisitorException
-
leave
void leave(org.w3c.dom.DocumentFragment docfrag) throws DOMVisitorException
- Throws:
DOMVisitorException
-
leave
void leave(org.w3c.dom.Notation notation) throws DOMVisitorException
- Throws:
DOMVisitorException
-
leave
void leave(org.w3c.dom.Node node) throws DOMVisitorException
- Throws:
DOMVisitorException
-
-