Kaydet (Commit) 6342a082 authored tarafından Rüdiger Timm's avatar Rüdiger Timm

INTEGRATION: CWS updchk06 (1.2.102); FILE MERGED

2007/06/28 23:57:13 obr 1.2.102.1: #i72386# added support for extracting the summary of a feed entry as description
üst b388ea18
......@@ -4,9 +4,9 @@
*
* $RCSfile: XUpdateInformationProvider.idl,v $
*
* $Revision: 1.2 $
* $Revision: 1.3 $
*
* last change: $Author: kz $ $Date: 2006-12-13 15:13:17 $
* last change: $Author: rt $ $Date: 2007-07-06 14:31:48 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
......@@ -37,6 +37,10 @@
#include <com/sun/star/uno/XInterface.idl>
#include <com/sun/star/uno/Exception.idl>
module com { module sun { module star { module container {
interface XEnumeration;
}; }; }; };
module com { module sun { module star { module task {
interface XInteractionHandler;
}; }; }; };
......@@ -95,6 +99,25 @@ interface XUpdateInformationProvider
The interaction handler to be set
*/
void setInteractionHandler( [in] com::sun::star::task::XInteractionHandler handler );
/** get update information for a specific extension or all available
information from a repository.
@param repositories
a repository and its mirrors. If the list is empty, the update
URL of the office installation is used.
@param extensionId
the unique identifier of an extension. If it is not empty and
the update document is an atom feed, only items whose 'term'
attribute of the atom:category tag matches extensionId are returned.
@returns
an enumeration of <type>UpdateInformationEntry</type>.
*/
com::sun::star::container::XEnumeration getUpdateInformationEnumeration(
[in] sequence< string > repositories,
[in] string extensionId
) raises ( com::sun::star::uno::Exception );
};
}; }; }; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment