KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jvnet > fastinfoset > FastInfosetResult


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;
41
42 import java.io.OutputStream JavaDoc;
43 import org.xml.sax.ContentHandler JavaDoc;
44 import org.xml.sax.ext.LexicalHandler JavaDoc;
45 import javax.xml.transform.sax.SAXResult JavaDoc;
46 import com.sun.xml.fastinfoset.sax.SAXDocumentSerializer;
47
48 /**
49  * A JAXP Result implementation that supports the serialization to fast
50  * infoset documents for use by applications that expect a Result.
51  *
52  * <P>The derivation of FIResult from SAXResult is an implementation
53  * detail.<P>
54  *
55  * <P>This implementation is designed for interoperation with JAXP and is not
56  * not designed with performance in mind. It is recommended that for performant
57  * interoperation alternative serializer specific solutions be used.<P>
58  *
59  * <P>General applications shall not call the following methods:
60  * <UL>
61  * <LI>setHandler</LI>
62  * <LI>setLexicalHandler</LI>
63  * <LI>setSystemId</LI>
64  * </UL>
65  * </P>
66  * @version 0.1
67  */

68 public class FastInfosetResult extends SAXResult JavaDoc {
69    
70     OutputStream JavaDoc _outputStream;
71     
72     public FastInfosetResult(OutputStream JavaDoc outputStream) {
73         _outputStream = outputStream;
74     }
75
76     public ContentHandler JavaDoc getHandler() {
77         ContentHandler JavaDoc handler = super.getHandler();
78         if (handler == null) {
79             handler = new SAXDocumentSerializer();
80             setHandler(handler);
81         }
82         ((SAXDocumentSerializer) handler).setOutputStream(_outputStream);
83         return handler;
84     }
85     
86     public LexicalHandler JavaDoc getLexicalHandler() {
87         return (LexicalHandler JavaDoc) getHandler();
88     }
89     
90     public OutputStream JavaDoc getOutputStream() {
91         return _outputStream;
92     }
93     
94     public void setOutputStream(OutputStream JavaDoc outputStream) {
95         _outputStream = outputStream;
96     }
97 }
98
Popular Tags