Xalan-C++ API Documentation
Xalan-C++ API Documentation
The Xalan C++ XSL Transformer Version 1.1
Main Page Class Hierarchy Alphabetical List Compound List File List Compound Members File Members
XalanOutputStreamPrintWriter Class Reference
#include <XalanOutputStreamPrintWriter.hpp>
Inheritance diagram for XalanOutputStreamPrintWriter
[legend]Collaboration diagram for XalanOutputStreamPrintWriter:
[legend]List of all members.Public Methods
- XalanOutputStreamPrintWriter ( XalanOutputStream& theOutputStream, bool fAutoFlush = false)
- Construct a XalanOutputStreamPrintWriter instance. More...
- virtual ~XalanOutputStreamPrintWriter ()
- virtual bool checkError () const
- Flush the stream, then check the error status. More...
- virtual void close ()
- Close the stream.
- virtual void flush ()
- Flush the stream.
- virtual XalanOutputStream* getStream ()
- Get the stream associated with the writer...
- virtual const XalanOutputStream* getStream () const
- Get the stream associated with the writer...
- virtual void write (const char* s, unsigned int theOffset = 0, unsigned int theLength = UINT_MAX)
- Writes a string. More...
- virtual void write (const XalanDOMChar* s, unsigned int theOffset = 0, unsigned int theLength = UINT_MAX)
- Writes a string. More...
- virtual void write (XalanDOMChar c)
- Writes a character. More...
- virtual void write (const XalanDOMString& s, unsigned int theOffset = 0, unsigned int theLength = UINT_MAX)
- Writes a string. More...
- virtual void print (bool b)
- virtual void print (char c)
- virtual void print (const char* s, unsigned int theLength = UINT_MAX)
- virtual void print (const XalanDOMChar* s, unsigned int theLength = UINT_MAX)
- virtual void print (double d)
- virtual void print (int i)
- virtual void print (long l)
- virtual void print (const XalanDOMString& s)
- virtual void println ()
- virtual void println (bool b)
- virtual void println (char c)
- virtual void println (const char* s, unsigned int theLength = UINT_MAX)
- virtual void println (const XalanDOMChar* s, unsigned int theLength = UINT_MAX)
- virtual void println (double d)
- virtual void println (int i)
- virtual void println (long l)
- virtual void println (const XalanDOMString& s)
Protected Attributes
Constructor & Destructor Documentation
XalanOutputStreamPrintWriter::XalanOutputStreamPrintWriter (
|
XalanOutputStream & theOutputStream,
|
|
bool fAutoFlush = false )
|
|
|
Construct a XalanOutputStreamPrintWriter instance.
-
Parameters:
-
theOutputStream
|
output stream to write |
fAutoFlush
|
if true, the output will not be buffered |
|
virtual XalanOutputStreamPrintWriter::~XalanOutputStreamPrintWriter (
|
) [virtual]
|
|
Member Function Documentation
virtual bool XalanOutputStreamPrintWriter::checkError (
|
) const [virtual]
|
|
|
Flush the stream, then check the error status.
-
Returns:
-
true if no errors
Reimplemented from PrintWriter. |
virtual void XalanOutputStreamPrintWriter::close (
|
) [virtual]
|
|
virtual void XalanOutputStreamPrintWriter::flush (
|
) [virtual]
|
|
virtual const XalanOutputStream* XalanOutputStreamPrintWriter::getStream (
|
) const [virtual]
|
|
|
Get the stream associated with the writer...
Reimplemented from Writer. |
|
Get the stream associated with the writer...
Reimplemented from Writer. |
virtual void XalanOutputStreamPrintWriter::print (
|
const XalanDOMString & s ) [virtual]
|
|
virtual void XalanOutputStreamPrintWriter::print (
|
long l ) [virtual]
|
|
virtual void XalanOutputStreamPrintWriter::print (
|
int i ) [virtual]
|
|
virtual void XalanOutputStreamPrintWriter::print (
|
double d ) [virtual]
|
|
virtual void XalanOutputStreamPrintWriter::print (
|
const XalanDOMChar * s,
|
|
unsigned int theLength = UINT_MAX ) [virtual]
|
|
virtual void XalanOutputStreamPrintWriter::print (
|
const char * s,
|
|
unsigned int theLength = UINT_MAX ) [virtual]
|
|
virtual void XalanOutputStreamPrintWriter::print (
|
char c ) [virtual]
|
|
virtual void XalanOutputStreamPrintWriter::print (
|
bool b ) [virtual]
|
|
virtual void XalanOutputStreamPrintWriter::println (
|
const XalanDOMString & s ) [virtual]
|
|
virtual void XalanOutputStreamPrintWriter::println (
|
long l ) [virtual]
|
|
virtual void XalanOutputStreamPrintWriter::println (
|
int i ) [virtual]
|
|
virtual void XalanOutputStreamPrintWriter::println (
|
double d ) [virtual]
|
|
virtual void XalanOutputStreamPrintWriter::println (
|
const XalanDOMChar * s,
|
|
unsigned int theLength = UINT_MAX ) [virtual]
|
|
virtual void XalanOutputStreamPrintWriter::println (
|
const char * s,
|
|
unsigned int theLength = UINT_MAX ) [virtual]
|
|
virtual void XalanOutputStreamPrintWriter::println (
|
char c ) [virtual]
|
|
virtual void XalanOutputStreamPrintWriter::println (
|
bool b ) [virtual]
|
|
virtual void XalanOutputStreamPrintWriter::println (
|
) [virtual]
|
|
virtual void XalanOutputStreamPrintWriter::write (
|
const XalanDOMString & s,
|
|
unsigned int theOffset = 0,
|
|
unsigned int theLength = UINT_MAX ) [virtual]
|
|
|
Writes a string.
-
Parameters:
-
s
|
string to write |
theOffset
|
starting offset in string to begin writing, default 0 |
theLength
|
number of characters to write. If the length is UINT_MAX, then the entire string is printed. Default is UINT_MAX. |
Reimplemented from PrintWriter. |
virtual void XalanOutputStreamPrintWriter::write (
|
XalanDOMChar c ) [virtual]
|
|
|
Writes a character.
-
Parameters:
-
Reimplemented from PrintWriter. |
virtual void XalanOutputStreamPrintWriter::write (
|
const XalanDOMChar * s,
|
|
unsigned int theOffset = 0,
|
|
unsigned int theLength = UINT_MAX ) [virtual]
|
|
|
Writes a string.
-
Parameters:
-
s
|
string to write |
theOffset
|
starting offset in string to begin writing, default 0 |
theLength
|
number of characters to write. If the length is UINT_MAX, then the array is assumed to be null-terminated. Default is UINT_MAX. |
Reimplemented from PrintWriter. |
virtual void XalanOutputStreamPrintWriter::write (
|
const char * s,
|
|
unsigned int theOffset = 0,
|
|
unsigned int theLength = UINT_MAX ) [virtual]
|
|
|
Writes a string.
-
Parameters:
-
s
|
string to write |
theOffset
|
starting offset in string to begin writing, default 0 |
theLength
|
number of characters to write. If the length is UINT_MAX, then the array is assumed to be null-terminated. Default is UINT_MAX. |
Reimplemented from PrintWriter. |
Member Data Documentation
The documentation for this class was generated from the following file:
Interpreting class diagrams
Doxygen and
GraphViz are used to generate this API documentation from the Xalan-C header files.
Xalan-C++ XSL Transformer Version 1.1
Copyright © 2000, 2001 The Apache Software Foundation. All Rights Reserved.
|
|