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

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

interface XPersistObject

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

Description
makes it possible to write the corresponding object to a stream.


Known Services which Export this Interface

com::sun::star::form::FormComponent specifies a component which can be part of a form.
com::sun::star::awt::TabControllerModel specifies a standard tab controller / ** specifies the standard model of an TabController .
com::sun::star::awt::UnoControlModel specifies the standard model of an UnoControl in the Smalltalk model view controller design .

Methods' Summary

getServiceName
write writes all the persistent data of the object to the stream.
read reads all the persistent data of the object from the stream.

Methods' Details

getServiceName
 
string
getServiceName();
Returns
the service name that specifies the behavior and the persistent data format of this implementation.

This name can be used to create such an object by a factory during deserialization.

See also
XServiceName::getServiceName
write
 
void
write(
[ in ] com::sun::star::io::XObjectOutputStream OutStream )
raises ( com::sun::star::io::IOException );

Description
writes all the persistent data of the object to the stream.
read
 
void
read(
[ in ] com::sun::star::io::XObjectInputStream InStream )
raises ( com::sun::star::io::IOException );

Description
reads all the persistent data of the object from the stream.

Top of Page