Top   Module   Use   Manual   Index 
 EXPORTING SERVICES | METHODS' SUMMARY | METHODS' DETAILS 

com :: sun :: star :: io ::

interface XActiveDataSource

Base Interface
com::sun::star::uno::XInterface

Description
has to be implemented if the class should be able to write into an output stream.
See also
XActiveDataControl.


Known Services which Export this Interface

com::sun::star::io::Pump the implementation of a data source and a data sink.
com::sun::star::io::ObjectOutputStream is a stream which allows writing the data of persistent objects.
com::sun::star::io::TextOutputStream writes its data to a chained XOutputStream .
com::sun::star::io::MarkableOutputStream allows to set marks in an outputstream and to later jump back to these marks.
com::sun::star::io::DataOutputStream writes structured data to a chained XOutputStream .
com::sun::star::io::Pump the implementation of a data source and a data sink.
com::sun::star::io::ObjectOutputStream is a stream which allows writing the data of persistent objects.
com::sun::star::io::TextOutputStream writes its data to a chained XOutputStream .
com::sun::star::io::MarkableOutputStream allows to set marks in an outputstream and to later jump back to these marks.
com::sun::star::io::DataOutputStream writes structured data to a chained XOutputStream .

Methods' Summary

setOutputStream plugs the output stream.
getOutputStream

Methods' Details

setOutputStream
 
void
setOutputStream(
[ in ] com::sun::star::io::XOutputStream aStream );

Description
plugs the output stream.

If XConnectable is also implemented, this method should query aStream for a XConnectable and connect both.

getOutputStream
 
com::sun::star::io::XOutputStream
getOutputStream();
Returns
the plugged stream.

Top of Page