LibreOffice
LibreOffice 24.2 SDK API Reference
|
Allows to store and retrieve URLs. More...
import"XUrlContainer.idl";
Public Member Functions | |
void | addUrl ([in] string Url, [in] boolean MakePersistent) |
Add a URL to the container. More... | |
string | findUrl ([in] string Url) |
Lookup a URL in the container. More... | |
void | removeUrl ([in] string Url) |
Remove a URL from the container. More... | |
sequence< string > | getUrls ([in] boolean OnlyPersistent) |
Get all URLs. More... | |
Public Member Functions inherited from XInterface | |
any | queryInterface ([in] type aType) |
queries for a new interface to an existing UNO object. More... | |
void | acquire () |
increases the reference counter by one. More... | |
void | release () |
decreases the reference counter by one. More... | |
Allows to store and retrieve URLs.
URLs can be stored persistently or until end of OOo session.
void addUrl | ( | [in] string | Url, |
[in] boolean | MakePersistent | ||
) |
Add a URL to the container.
Url | URL to add to the container |
MakePersistent | indicates whether the URL shall be stored persistently or just in memory (until end of OOo session) |
string findUrl | ( | [in] string | Url | ) |
Lookup a URL in the container.
Url | URL to lookup. |
sequence<string> getUrls | ( | [in] boolean | OnlyPersistent | ) |
Get all URLs.
OnlyPersistent | Only URLs that are stored persistently shall be returned. |
void removeUrl | ( | [in] string | Url | ) |
Remove a URL from the container.
Url | URL to remove. |