Methods' Details |
hasLocation
- Description
- The object may know the location because it was loaded from there,
or because it is stored there.
- Returns
- true if the object knows a location where it is persistent
false otherwise
|
|
getLocation
- Description
- After XStorable::storeAsURL() it returns the
URL the object was stored to.
- Returns
- the URL of the resource which is represented by this object.
|
|
isReadonly
- Description
- It is not possible to call XStorable::store() successfully
when the data store is read-only.
- Returns
- true if the data store is readonly or opened readonly
false otherwise
|
|
store
- Description
- stores the data to the URL from which it was loaded.
Only objects which know their locations can be stored.
- Throws
- com::sun::star::io::IOException
if an IO error occured during save operation
(may the location is unknown)
|
|
storeAsURL
- Description
- stores the object's persistent data to a URL and
makes this URL the new location of the object.
This is the normal behavior for UI's "save-as" feature.
The change of the location makes it necessary to store the document in
a format that the object can load. For this reason the implementation of
XStorable::storeAsURL() will throw an exception if a pure
export filter is used, it will accept only combined import/export filters.
For such filters the method XStorable::storeToURL()
must be used that does not change the location of the object.
- Parameter sURL
- specifies the new location of this component
- Parameter lArguments
- optional parameters for saving
(see ::com::sun::star::document::MediaDescriptor for further details)
- Throws
- com::sun::star::io::IOException
if an IO error occured during save operation
(may the location is unknown)
|
|
storeToURL
- Description
- stores the object's persistent data to a URL and
continues to be a representation of the old URL.
This is the normal behavior for UI's export feature.
This method accepts all kinds of export filters, not only combined
import/export filters because it implements an exporting capability, not a
persistence capability.
- Throws
- com::sun::star::io::IOException
if an IO error occured during save operation
(may the location is unknown)
- Parameter lArguments
- optional parameters for saving
(see ::com::sun::star::document::MediaDescriptor for further details)
|
|
Copyright © 2010 Sun Microsystems, Inc.