1 package net.sf.saxon.event; 2 3 import net.sf.saxon.trans.XPathException; 4 5 8 9 public class Sink implements Receiver { 10 private PipelineConfiguration pipe; 11 private String systemId; 12 13 public void setSystemId(String systemId) { 14 this.systemId = systemId; 15 } 16 17 public String getSystemId() { 18 return systemId; 19 } 20 21 24 25 public void setPipelineConfiguration(PipelineConfiguration pipe) { 26 this.pipe = pipe; 27 } 28 29 32 33 public PipelineConfiguration getPipelineConfiguration() { 34 return pipe; 35 } 36 37 40 41 public void open() throws XPathException { 42 } 43 44 47 48 public void close() throws XPathException { 49 } 50 51 54 55 public void startDocument(int properties) throws XPathException { 56 } 57 58 61 62 public void endDocument() throws XPathException { 63 } 64 65 72 73 public void startElement(int nameCode, int typeCode, int locationId, int properties) 74 throws XPathException { 75 } 76 77 91 92 public void namespace(int namespaceCode, int properties) throws XPathException { 93 94 } 95 96 109 110 public void attribute(int nameCode, int typeCode, CharSequence value, int locationId, int properties) 111 throws XPathException { 112 } 113 114 120 121 122 public void startContent() throws XPathException { 123 } 124 125 128 129 public void endElement() throws XPathException { 130 } 131 132 135 136 public void characters(CharSequence chars, int locationId, int properties) throws XPathException { 137 } 138 139 140 143 144 public void processingInstruction(String target, CharSequence data, int locationId, int properties) throws XPathException { 145 } 146 147 150 151 public void comment(CharSequence chars, int locationId, int properties) throws XPathException { 152 } 153 154 155 158 159 public void setUnparsedEntity(String name, String uri, String publicId) throws XPathException { 160 } 161 162 } 163 164 | Popular Tags |