:: com :: sun :: star :: document ::

unpublished interface XDocumentRevisionListPersistence
Usage Restrictions
not published
Description
interface to load or store a list of document revisions from or to a document using the packed XML file format

Methods' Summary
load Loads a list of available revisions from a storage  
store Stores a list of available revisions to a storage  
Methods' Details
load
sequence< ::com::sun::star::util::RevisionTag >
load( [in] ::com::sun::star::embed::XStorage  Storage )
raises( ::com::sun::star::container::NoSuchElementException,
::com::sun::star::io::IOException,
::com::sun::star::uno::Exception );

Description
Loads a list of available revisions from a storage

This method does not load any revision itself

store
void
store( [in] ::com::sun::star::embed::XStorage  Storage,
[in] sequence< ::com::sun::star::util::RevisionTag >  List )
raises( ::com::sun::star::io::IOException,
::com::sun::star::uno::Exception );

Description
Stores a list of available revisions to a storage

This method does not store revisions themselves

Top of Page