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

(Global Index)

Syntax

interface XObjectOutputStream : com::sun::star::io::XDataOutputStream ;

Description

makes it possible to store the data and structure of runtime objects.

In every case all participating objects have to be stored or loaded at the same time. To be able to load objects, for each object class in the stream, a factory is needed. These factories are XMultiServiceFactory , which are registered at the global service manager.

Example

Given: Object A refers to B, B to C and C to A and D. The order of storing and loading these objects is irrelevant, but it must be the same for each action:

Method Summary

writeObject writes an object to the stream.

Method Details



writeObject

Syntax

void writeObject (
com::sun::star::io::XPersistObject Object )
raises ( com::sun::star::io::IOException );

Description

writes an object to the stream.

Top of Page