Source Code Cross Referenced for FastInfosetSource.java in  » 6.0-JDK-Modules-com.sun » fastinfoset » org » jvnet » fastinfoset » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » 6.0 JDK Modules com.sun » fastinfoset » org.jvnet.fastinfoset 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


01:        /*
02:         * Fast Infoset ver. 0.1 software ("Software")
03:         * 
04:         * Copyright, 2004-2005 Sun Microsystems, Inc. All Rights Reserved. 
05:         * 
06:         * Software is licensed under the Apache License, Version 2.0 (the "License");
07:         * you may not use this file except in compliance with the License. You may
08:         * obtain a copy of the License at:
09:         * 
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:        package org.jvnet.fastinfoset;
40:
41:        import java.io.InputStream;
42:
43:        import javax.xml.transform.sax.SAXSource;
44:
45:        import org.xml.sax.InputSource;
46:        import org.xml.sax.XMLReader;
47:
48:        import com.sun.xml.fastinfoset.sax.SAXDocumentParser;
49:
50:        /**
51:         *  A JAXP Source implementation that supports the parsing fast
52:         *  infoset document for use by applications that expect a Source.
53:         *
54:         *  <P>The derivation of FISource from SAXSource is an implementation
55:         *  detail.<P>
56:         *
57:         *  <P>This implementation is designed for interoperation with JAXP and is not
58:         *  not designed with performance in mind. It is recommended that for performant
59:         *  interoperation alternative parser specific solutions be used.<P>
60:         *
61:         *  <P>Applications shall obey the following restrictions:
62:         *   <UL>
63:         *     <LI>The setXMLReader and setInputSource shall not be called.</LI>
64:         *     <LI>The XMLReader object obtained by the getXMLReader method shall
65:         *        be used only for parsing the InputSource object returned by
66:         *        the getInputSource method.</LI>
67:         *     <LI>The InputSource object obtained by the getInputSource method shall 
68:         *        be used only for being parsed by the XMLReader object returned by 
69:         *        the getXMLReader method.</LI>
70:         *   </UL>
71:         *  </P>
72:         */
73:        public class FastInfosetSource extends SAXSource {
74:
75:            public FastInfosetSource(InputStream inputStream) {
76:                super (new InputSource(inputStream));
77:            }
78:
79:            public XMLReader getXMLReader() {
80:                XMLReader reader = super .getXMLReader();
81:                if (reader == null) {
82:                    reader = new SAXDocumentParser();
83:                    setXMLReader(reader);
84:                }
85:                ((SAXDocumentParser) reader).setInputStream(getInputStream());
86:                return reader;
87:            }
88:
89:            public InputStream getInputStream() {
90:                return getInputSource().getByteStream();
91:            }
92:
93:            public void setInputStream(InputStream inputStream) {
94:                setInputSource(new InputSource(inputStream));
95:            }
96:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.