Package jp.gr.xml.relax.dom
Interface IDOMVisitor
-
- All Known Implementing Classes:
DOMSAXProducerVisitor,SAXEventGenerator,XMLMaker
public interface IDOMVisitorIDOMVisitor- Since:
- Oct. 7, 2000
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanenter(org.w3c.dom.Attr attr)booleanenter(org.w3c.dom.CDATASection cdata)booleanenter(org.w3c.dom.Comment comment)booleanenter(org.w3c.dom.Document doc)booleanenter(org.w3c.dom.DocumentFragment docfrag)booleanenter(org.w3c.dom.DocumentType doctype)booleanenter(org.w3c.dom.Element element)booleanenter(org.w3c.dom.Entity entity)booleanenter(org.w3c.dom.EntityReference entityRef)booleanenter(org.w3c.dom.Node node)booleanenter(org.w3c.dom.Notation notation)booleanenter(org.w3c.dom.ProcessingInstruction pi)booleanenter(org.w3c.dom.Text text)voidleave(org.w3c.dom.Attr attr)voidleave(org.w3c.dom.CDATASection cdata)voidleave(org.w3c.dom.Comment comment)voidleave(org.w3c.dom.Document doc)voidleave(org.w3c.dom.DocumentFragment docfrag)voidleave(org.w3c.dom.DocumentType doctype)voidleave(org.w3c.dom.Element element)voidleave(org.w3c.dom.Entity entity)voidleave(org.w3c.dom.EntityReference entityRef)voidleave(org.w3c.dom.Node node)voidleave(org.w3c.dom.Notation notation)voidleave(org.w3c.dom.ProcessingInstruction pi)voidleave(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
-
-