1 38 39 40 package org.jvnet.fastinfoset.sax; 41 42 import org.xml.sax.SAXException ; 43 import org.xml.sax.ext.LexicalHandler ; 44 import org.xml.sax.helpers.DefaultHandler ; 45 46 public class FastInfosetDefaultHandler extends DefaultHandler implements 47 LexicalHandler , EncodingAlgorithmContentHandler, PrimitiveTypeContentHandler { 48 49 51 public void comment(char[] ch, int start, int length) throws SAXException { 52 } 53 54 public void startCDATA() throws SAXException { 55 } 56 57 public void endCDATA() throws SAXException { 58 } 59 60 public void startDTD(String name, String publicId, String systemId) throws SAXException { 61 } 62 63 public void endDTD() throws SAXException { 64 } 65 66 public void startEntity(String name) throws SAXException { 67 } 68 69 public void endEntity(String name) throws SAXException { 70 } 71 72 73 75 public void octets(String URI, int algorithm, byte[] b, int start, int length) throws SAXException { 76 } 77 78 public void object(String URI, int algorithm, Object o) throws SAXException { 79 } 80 81 82 84 public void booleans(boolean[] b, int start, int length) throws SAXException { 85 } 86 87 public void bytes(byte[] b, int start, int length) throws SAXException { 88 } 89 90 public void shorts(short[] s, int start, int length) throws SAXException { 91 } 92 93 public void ints(int[] i, int start, int length) throws SAXException { 94 } 95 96 public void longs(long[] l, int start, int length) throws SAXException { 97 } 98 99 public void floats(float[] f, int start, int length) throws SAXException { 100 } 101 102 public void doubles(double[] d, int start, int length) throws SAXException { 103 } 104 105 public void uuids(long[] msblsb, int start, int length) throws SAXException { 106 } 107 } 108 | Popular Tags |