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

interface XStream
Base Hierarchy
::com::sun::star::uno::XInterface
 |
 +-XStream
Description
offers read and write access to the same stream.

Methods' Summary
getInputStream
getOutputStream
Methods' Details
getInputStream
XInputStream
getInputStream();
 
 

Returns
the XInputStream part of the stream. Closing the returned XInputStream also closes any XOutputStream part.
getOutputStream
XOutputStream
getOutputStream();
 
 

Returns
the XInputStream part of the stream. Closing the returned XOutputStream also closes the XInputStream part.
Top of Page