< prev index next >

src/java.xml/share/classes/javax/xml/transform/stax/package.html

Print this page


   1 <?xml version="1.0" encoding="UTF-8"?>
   2 <!--
   3 
   4 Copyright (c) 2005, 2006, Oracle and/or its affiliates. All rights reserved.
   5 DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   6 
   7 This code is free software; you can redistribute it and/or modify it
   8 under the terms of the GNU General Public License version 2 only, as
   9 published by the Free Software Foundation.  Oracle designates this
  10 particular file as subject to the "Classpath" exception as provided
  11 by Oracle in the LICENSE file that accompanied this code.
  12 
  13 This code is distributed in the hope that it will be useful, but WITHOUT
  14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  15 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  16 version 2 for more details (a copy is included in the LICENSE file that
  17 accompanied this code).
  18 
  19 You should have received a copy of the GNU General Public License version
  20 2 along with this work; if not, write to the Free Software Foundation,
  21 Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  22 
  23 Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  24 or visit www.oracle.com if you need additional information or have any
  25 questions. 
  26 
  27 -->
  28 
  29 <!DOCTYPE html
  30      PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  31      "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  32 
  33 <html xmlns="http://www.w3.org/1999/xhtml">
  34         <head>
  35                 <title>javax.xml.transform.stax</title>
  36 
  37                 <meta name="CVS"
  38                         content="$Id: package.html,v 1.2 2005/11/03 19:34:28 jeffsuttor Exp $" />
  39                 <meta name="AUTHOR"
  40                         content="Jeff.Suttor@Sun.com" />
  41                 <meta name="AUTHOR"
  42                         content="Neeraj.Bajaj@Sun.com" />
  43         </head>
  44         <body>
  45                 <p>
  46                         Provides for StAX-specific transformation APIs.
  47                         TODO: better description(s).















  48                 </p>
  49 
  50                 <h2>Package Specification</h2>
  51                 <ul>
  52                         <li><a href="http://jcp.org/en/jsr/detail?id=173">JSR 173: Streaming API for XML</a></li>
  53                 </ul>
  54 
  55                 <h2>Related Documentation</h2>
  56 
  57                 <p>For overviews, tutorials, examples, guides, and tool documentation, please see:</p>
  58                 <ul>
  59                         <li><a href="">TODO: Refer to non-spec documentation</a></li>
  60                 </ul>
  61 
  62                 <!-- Put @see and @since tags down here. -->
  63                 <ul>
  64                         <li>@see XMLStreamReader</li>
  65                         <li>@see XMLEventReader</li>
  66                 </ul>
  67                 
  68                 @since 1.6
  69         </body>
  70 </html>

   1 <?xml version="1.0" encoding="UTF-8"?>
   2 <!--
   3 Copyright (c) 2005, 2017, Oracle and/or its affiliates. All rights reserved.

   4 DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   5 
   6 This code is free software; you can redistribute it and/or modify it
   7 under the terms of the GNU General Public License version 2 only, as
   8 published by the Free Software Foundation.  Oracle designates this
   9 particular file as subject to the "Classpath" exception as provided
  10 by Oracle in the LICENSE file that accompanied this code.
  11 
  12 This code is distributed in the hope that it will be useful, but WITHOUT
  13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  14 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  15 version 2 for more details (a copy is included in the LICENSE file that
  16 accompanied this code).
  17 
  18 You should have received a copy of the GNU General Public License version
  19 2 along with this work; if not, write to the Free Software Foundation,
  20 Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  21 
  22 Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  23 or visit www.oracle.com if you need additional information or have any
  24 questions. 

  25 -->
  26 
  27 <!DOCTYPE html
  28     PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  29     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  30 
  31 <html xmlns="http://www.w3.org/1999/xhtml">
  32     <head>
  33         <title>javax.xml.transform.stax</title>
  34 
  35         <meta name="CVS"
  36               content="$Id: package.html,v 1.2 2005/11/03 19:34:28 jeffsuttor Exp $" />
  37         <meta name="AUTHOR"
  38               content="Jeff.Suttor@Sun.com" />
  39         <meta name="AUTHOR"
  40               content="Neeraj.Bajaj@Sun.com" />
  41     </head>
  42     <body>
  43         <p>
  44             This package implements StAX-specific transformation APIs. It provides
  45             classes which allow input from a StAX reader, that is, 
  46             {@link javax.xml.stream.XMLStreamReader} or {@link javax.xml.stream.XMLEventReader}, 
  47             and output to a StAX writer, that is, 
  48             {@link javax.xml.stream.XMLStreamWriter} or {@link javax.xml.stream.XMLEventWriter}.
  49         </p>
  50         <p>
  51             The {@link javax.xml.transform.stax.StAXSource} class encapsulates a 
  52             {@link javax.xml.stream.XMLStreamReader} or {@link javax.xml.stream.XMLEventReader} 
  53             and can be used as an input where a {@link javax.xml.transform.Source}
  54             object is accepted.
  55         </p>
  56         <p>
  57             The {@link javax.xml.transform.stax.StAXResult} class encapsulates a 
  58             {@link javax.xml.stream.XMLStreamWriter} or {@link javax.xml.stream.XMLEventWriter} 
  59             and can be used as an output where a {@link javax.xml.transform.Result}
  60             object is accepted.
  61         </p>


















  62 
  63         @since 1.6
  64     </body>
  65 </html>
  66 
< prev index next >