interface XPersistObject in module com::sun::star::io::

(Global Index)

Syntax

interface XPersistObject : com::sun::star::uno::XInterface ;

Description

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

Method 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.

Method Details



getServiceName

Syntax

string getServiceName ();

Description

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.

See also

XServiceName::getServiceName

write

Syntax

void write (
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

Syntax

void read (
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