| Class and Description |
|---|
| SerializationHandler
This interface is the one that a serializer implements.
|
| Class and Description |
|---|
| DOMSerializer
Interface for a DOM serializer implementation.
|
| EmptySerializer
This class is an adapter class.
|
| SerializationHandler
This interface is the one that a serializer implements.
|
| Serializer
The Serializer interface is implemented by a serializer to enable users to:
get and set streams or writers
configure the serializer with key/value properties
get an org.xml.sax.ContentHandler or a DOMSerializer to provide input to
Here is an example using the asContentHandler() method:
java.util.Properties props =
OutputPropertiesFactory.getDefaultMethodProperties(Method.TEXT);
Serializer ser = SerializerFactory.getSerializer(props);
java.io.PrintStream ostream = System.out;
ser.setOutputStream(ostream);
// Provide the SAX input events
ContentHandler handler = ser.asContentHandler();
handler.startDocument();
char[] chars = { 'a', 'b', 'c' };
handler.characters(chars, 0, chars.length);
handler.endDocument();
ser.reset(); // get ready to use the serializer for another document
// of the same output method (TEXT).
|
| Class and Description |
|---|
| DOMSerializer
Interface for a DOM serializer implementation.
|
| EmptySerializer
This class is an adapter class.
|
| SerializationHandler
This interface is the one that a serializer implements.
|
| Serializer
The Serializer interface is implemented by a serializer to enable users to:
get and set streams or writers
configure the serializer with key/value properties
get an org.xml.sax.ContentHandler or a DOMSerializer to provide input to
Here is an example using the asContentHandler() method:
java.util.Properties props =
OutputPropertiesFactory.getDefaultMethodProperties(Method.TEXT);
Serializer ser = SerializerFactory.getSerializer(props);
java.io.PrintStream ostream = System.out;
ser.setOutputStream(ostream);
// Provide the SAX input events
ContentHandler handler = ser.asContentHandler();
handler.startDocument();
char[] chars = { 'a', 'b', 'c' };
handler.characters(chars, 0, chars.length);
handler.endDocument();
ser.reset(); // get ready to use the serializer for another document
// of the same output method (TEXT).
|
| Class and Description |
|---|
| SerializationHandler
This interface is the one that a serializer implements.
|
| Class and Description |
|---|
| SerializationHandler
This interface is the one that a serializer implements.
|
| Class and Description |
|---|
| SerializationHandler
This interface is the one that a serializer implements.
|
| Class and Description |
|---|
| AttributesImplSerializer
This class extends org.xml.sax.helpers.AttributesImpl which implements org.
|
| DOMSerializer
Interface for a DOM serializer implementation.
|
| ElemDesc
This class has a series of flags (bit values) that describe an HTML element
This class is public because XSLTC uses it, it is not a public API.
|
| NamespaceMappings
This class keeps track of the currently defined namespaces.
|
| SerializationHandler
This interface is the one that a serializer implements.
|
| Serializer
The Serializer interface is implemented by a serializer to enable users to:
get and set streams or writers
configure the serializer with key/value properties
get an org.xml.sax.ContentHandler or a DOMSerializer to provide input to
Here is an example using the asContentHandler() method:
java.util.Properties props =
OutputPropertiesFactory.getDefaultMethodProperties(Method.TEXT);
Serializer ser = SerializerFactory.getSerializer(props);
java.io.PrintStream ostream = System.out;
ser.setOutputStream(ostream);
// Provide the SAX input events
ContentHandler handler = ser.asContentHandler();
handler.startDocument();
char[] chars = { 'a', 'b', 'c' };
handler.characters(chars, 0, chars.length);
handler.endDocument();
ser.reset(); // get ready to use the serializer for another document
// of the same output method (TEXT).
|
| SerializerBase
This class acts as a base class for the XML "serializers"
and the stream serializers.
|
| SerializerTrace
This interface defines a set of integer constants that identify trace event
types.
|
| ToSAXHandler
This class is used to provide a base behavior to be inherited
by other To...SAXHandler serializers.
|
| ToStream
This abstract class is a base class for other stream
serializers (xml, html, text ...) that write output to a stream.
|
| ToXMLStream
This class converts SAX or SAX-like calls to a
serialized xml document.
|
| TransformStateSetter
This interface is meant to be used by a base interface to
TransformState, but which as only the setters which have non Xalan
specific types in their signature, so that there are no dependancies
of the serializer on Xalan.
|
Copyright © 2018–2021 mhoffrogge. All rights reserved.