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

interface XStream
Base Interfaces
::com::sun::star::uno::XInterface
  |  
  +--XStream
::com::sun::star::uno::XInterface
(referenced interface's summary:)
base interface of all UNO interfaces
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