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(Attr attr)booleanenter(CDATASection cdata)booleanenter(Comment comment)booleanenter(Document doc)booleanenter(DocumentFragment docfrag)booleanenter(DocumentType doctype)booleanenter(Element element)booleanenter(Entity entity)booleanenter(EntityReference entityRef)booleanenter(Node node)booleanenter(Notation notation)booleanenter(ProcessingInstruction pi)booleanenter(Text text)voidleave(Attr attr)voidleave(CDATASection cdata)voidleave(Comment comment)voidleave(Document doc)voidleave(DocumentFragment docfrag)voidleave(DocumentType doctype)voidleave(Element element)voidleave(Entity entity)voidleave(EntityReference entityRef)voidleave(Node node)voidleave(Notation notation)voidleave(ProcessingInstruction pi)voidleave(Text text)
-
-
-
Method Detail
-
enter
boolean enter(Element element) throws DOMVisitorException
- Throws:
DOMVisitorException
-
enter
boolean enter(Attr attr) throws DOMVisitorException
- Throws:
DOMVisitorException
-
enter
boolean enter(Text text) throws DOMVisitorException
- Throws:
DOMVisitorException
-
enter
boolean enter(CDATASection cdata) throws DOMVisitorException
- Throws:
DOMVisitorException
-
enter
boolean enter(EntityReference entityRef) throws DOMVisitorException
- Throws:
DOMVisitorException
-
enter
boolean enter(Entity entity) throws DOMVisitorException
- Throws:
DOMVisitorException
-
enter
boolean enter(ProcessingInstruction pi) throws DOMVisitorException
- Throws:
DOMVisitorException
-
enter
boolean enter(Comment comment) throws DOMVisitorException
- Throws:
DOMVisitorException
-
enter
boolean enter(Document doc) throws DOMVisitorException
- Throws:
DOMVisitorException
-
enter
boolean enter(DocumentType doctype) throws DOMVisitorException
- Throws:
DOMVisitorException
-
enter
boolean enter(DocumentFragment docfrag) throws DOMVisitorException
- Throws:
DOMVisitorException
-
enter
boolean enter(Notation notation) throws DOMVisitorException
- Throws:
DOMVisitorException
-
enter
boolean enter(Node node) throws DOMVisitorException
- Throws:
DOMVisitorException
-
leave
void leave(Element element) throws DOMVisitorException
- Throws:
DOMVisitorException
-
leave
void leave(Attr attr) throws DOMVisitorException
- Throws:
DOMVisitorException
-
leave
void leave(Text text) throws DOMVisitorException
- Throws:
DOMVisitorException
-
leave
void leave(CDATASection cdata) throws DOMVisitorException
- Throws:
DOMVisitorException
-
leave
void leave(EntityReference entityRef) throws DOMVisitorException
- Throws:
DOMVisitorException
-
leave
void leave(Entity entity) throws DOMVisitorException
- Throws:
DOMVisitorException
-
leave
void leave(ProcessingInstruction pi) throws DOMVisitorException
- Throws:
DOMVisitorException
-
leave
void leave(Comment comment) throws DOMVisitorException
- Throws:
DOMVisitorException
-
leave
void leave(Document doc) throws DOMVisitorException
- Throws:
DOMVisitorException
-
leave
void leave(DocumentType doctype) throws DOMVisitorException
- Throws:
DOMVisitorException
-
leave
void leave(DocumentFragment docfrag) throws DOMVisitorException
- Throws:
DOMVisitorException
-
leave
void leave(Notation notation) throws DOMVisitorException
- Throws:
DOMVisitorException
-
leave
void leave(Node node) throws DOMVisitorException
- Throws:
DOMVisitorException
-
-