1
|
|
/*
|
2
|
|
* JBind
|
3
|
|
*
|
4
|
|
* Copyright (c) by Stefan Wachter. All rights reserved.
|
5
|
|
*
|
6
|
|
* Usage, modification, and redistribution is subject to license terms that are
|
7
|
|
* available at 'http://www.jbind.org'. The JBind license is like the
|
8
|
|
* 'Apache Software License V 1.1'.
|
9
|
|
*/
|
10
|
|
package org.jbind.xml.dom3.core;
|
11
|
|
|
12
|
|
import org.jbind.xml.dom3.types.IDomAttr;
|
13
|
|
import org.jbind.xml.dom3.types.IDomCDataSection;
|
14
|
|
import org.jbind.xml.dom3.types.IDomComment;
|
15
|
|
import org.jbind.xml.dom3.types.IDomDocument;
|
16
|
|
import org.jbind.xml.dom3.types.IDomDocumentFragment;
|
17
|
|
import org.jbind.xml.dom3.types.IDomDocumentType;
|
18
|
|
import org.jbind.xml.dom3.types.IDomElement;
|
19
|
|
import org.jbind.xml.dom3.types.IDomEntity;
|
20
|
|
import org.jbind.xml.dom3.types.IDomEntityReference;
|
21
|
|
import org.jbind.xml.dom3.types.IDomNotation;
|
22
|
|
import org.jbind.xml.dom3.types.IDomProcessingInstruction;
|
23
|
|
import org.jbind.xml.dom3.types.IDomText;
|
24
|
|
import org.jbind.xml.dom3.types.IDomVisitor;
|
25
|
|
|
26
|
|
public class DomVisitor implements IDomVisitor {
|
27
|
|
|
28
|
0
|
public DomVisitor() {}
|
29
|
|
|
30
|
0
|
public void visitAttrEnd(IDomAttr aNode) {}
|
31
|
|
|
32
|
0
|
public void visitAttrStart(IDomAttr aNode) {}
|
33
|
|
|
34
|
0
|
public void visitCDataSectionEnd(IDomCDataSection aNode) {}
|
35
|
|
|
36
|
0
|
public void visitCDataSectionStart(IDomCDataSection aNode) {}
|
37
|
|
|
38
|
0
|
public void visitCommentEnd(IDomComment aNode) {}
|
39
|
|
|
40
|
0
|
public void visitCommentStart(IDomComment aNode) {}
|
41
|
|
|
42
|
0
|
public void visitDocumentEnd(IDomDocument aNode) {}
|
43
|
|
|
44
|
0
|
public void visitDocumentFragmentEnd(IDomDocumentFragment aNode) {}
|
45
|
|
|
46
|
0
|
public void visitDocumentFragmentStart(IDomDocumentFragment aNode) {}
|
47
|
|
|
48
|
0
|
public void visitDocumentStart(IDomDocument aNode) {}
|
49
|
|
|
50
|
0
|
public void visitDocumentTypeEnd(IDomDocumentType aNode) {}
|
51
|
|
|
52
|
0
|
public void visitDocumentTypeStart(IDomDocumentType aNode) {}
|
53
|
|
|
54
|
0
|
public void visitElementEnd(IDomElement aNode) {}
|
55
|
|
|
56
|
0
|
public void visitElementStart(IDomElement aNode) {}
|
57
|
|
|
58
|
0
|
public void visitEntityEnd(IDomEntity aNode) {}
|
59
|
|
|
60
|
0
|
public void visitEntityReferenceEnd(IDomEntityReference aNode) {}
|
61
|
|
|
62
|
0
|
public void visitEntityReferenceStart(IDomEntityReference aNode) {}
|
63
|
|
|
64
|
0
|
public void visitEntityStart(IDomEntity aNode) {}
|
65
|
|
|
66
|
0
|
public void visitNotationEnd(IDomNotation aNode) {}
|
67
|
|
|
68
|
0
|
public void visitNotationStart(IDomNotation aNode) {}
|
69
|
|
|
70
|
0
|
public void visitProcessingInstructionEnd(IDomProcessingInstruction aNode) {}
|
71
|
|
|
72
|
0
|
public void visitProcessingInstructionStart(IDomProcessingInstruction aNode) {}
|
73
|
|
|
74
|
0
|
public void visitTextEnd(IDomText aNode) {}
|
75
|
|
|
76
|
0
|
public void visitTextStart(IDomText aNode) {}
|
77
|
|
|
78
|
|
}
|
79
|
|
|