interface XStarBasicLibraryInfo in module com::sun::star::script::

(Global Index)

Syntax

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

Description

Interface representing a library and provides access to its modules

Method Summary

getName

getModuleContainer

getDialogContainer

getPassword

getExternalSourceURL

getLinkTargetURL

Method Details



getName

Syntax

string getName ();

Description

Returns

The library's name

getModuleContainer

Syntax

com::sun::star::container::XNameContainer getModuleContainer ();

Description

Returns

The module container giving access to the modules stored in the library. The container has to be returned in any case, no matter if the library is stored embedded, external or linked.

See also

getExternalSourceURL

See also

getLinkTargetURL

getDialogContainer

Syntax

com::sun::star::container::XNameContainer getDialogContainer ();

Description

Returns

The dialog container giving access to the dialogs stored in the library. The container has to be returned in any case, no matter if the library is stored embedded, external or linked.

See also

getExternalSourceURL

See also

getLinkTargetURL

getPassword

Syntax

string getPassword ();

Description

Returns

The password, if the library is protected with one, an empty string otherwise.

getExternalSourceURL

Syntax

string getExternalSourceURL ();

Description

Returns

URL describing the location where the library is stored if the library is stored seperately (for example not in the main XML file but in a special library format file), an empty string otherwise. This information can be useful to optimize the access to the library, e.g. for loading on demand.

getLinkTargetURL

Syntax

string getLinkTargetURL ();

Description

Returns

URL describing the location of the library linked to. HINT: This method can be removed when there is a generic interface for linking. Then the implementation will simply support this "XLinked" interface and it can be checked by queryInterface().
Top of Page