KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jvnet > fastinfoset > sax > FastInfosetDefaultHandler


1 /*
2  * Fast Infoset ver. 0.1 software ("Software")
3  *
4  * Copyright, 2004-2005 Sun Microsystems, Inc. All Rights Reserved.
5  *
6  * Software is licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License. You may
8  * obtain a copy of the License at:
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
14  * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
15  * License for the specific language governing permissions and limitations.
16  *
17  * Sun supports and benefits from the global community of open source
18  * developers, and thanks the community for its important contributions and
19  * open standards-based technology, which Sun has adopted into many of its
20  * products.
21  *
22  * Please note that portions of Software may be provided with notices and
23  * open source licenses from such communities and third parties that govern the
24  * use of those portions, and any licenses granted hereunder do not alter any
25  * rights and obligations you may have under such open source licenses,
26  * however, the disclaimer of warranty and limitation of liability provisions
27  * in this License will apply to all Software in this distribution.
28  *
29  * You acknowledge that the Software is not designed, licensed or intended
30  * for use in the design, construction, operation or maintenance of any nuclear
31  * facility.
32  *
33  * Apache License
34  * Version 2.0, January 2004
35  * http://www.apache.org/licenses/
36  *
37  */

38
39
40 package org.jvnet.fastinfoset.sax;
41
42 import org.xml.sax.SAXException JavaDoc;
43 import org.xml.sax.ext.LexicalHandler JavaDoc;
44 import org.xml.sax.helpers.DefaultHandler JavaDoc;
45
46 public class FastInfosetDefaultHandler extends DefaultHandler JavaDoc implements
47         LexicalHandler JavaDoc, EncodingAlgorithmContentHandler, PrimitiveTypeContentHandler {
48
49     // LexicalHandler
50

51     public void comment(char[] ch, int start, int length) throws SAXException JavaDoc {
52     }
53   
54     public void startCDATA() throws SAXException JavaDoc {
55     }
56   
57     public void endCDATA() throws SAXException JavaDoc {
58     }
59     
60     public void startDTD(String JavaDoc name, String JavaDoc publicId, String JavaDoc systemId) throws SAXException JavaDoc {
61     }
62
63     public void endDTD() throws SAXException JavaDoc {
64     }
65     
66     public void startEntity(String JavaDoc name) throws SAXException JavaDoc {
67     }
68
69     public void endEntity(String JavaDoc name) throws SAXException JavaDoc {
70     }
71
72     
73     // EncodingAlgorithmContentHandler
74

75     public void octets(String JavaDoc URI, int algorithm, byte[] b, int start, int length) throws SAXException JavaDoc {
76     }
77
78     public void object(String JavaDoc URI, int algorithm, Object JavaDoc o) throws SAXException JavaDoc {
79     }
80     
81     
82     // PrimitiveTypeContentHandler
83

84     public void booleans(boolean[] b, int start, int length) throws SAXException JavaDoc {
85     }
86
87     public void bytes(byte[] b, int start, int length) throws SAXException JavaDoc {
88     }
89     
90     public void shorts(short[] s, int start, int length) throws SAXException JavaDoc {
91     }
92     
93     public void ints(int[] i, int start, int length) throws SAXException JavaDoc {
94     }
95     
96     public void longs(long[] l, int start, int length) throws SAXException JavaDoc {
97     }
98     
99     public void floats(float[] f, int start, int length) throws SAXException JavaDoc {
100     }
101     
102     public void doubles(double[] d, int start, int length) throws SAXException JavaDoc {
103     }
104
105     public void uuids(long[] msblsb, int start, int length) throws SAXException JavaDoc {
106     }
107 }
108
Popular Tags