From 65162840e329afee6f401f5a91273c2dbd1bbdf8 Mon Sep 17 00:00:00 2001 From: Kai Sommerfeld Date: Tue, 15 Mar 2011 21:47:26 +0100 Subject: #i117329# - Publishing of UNO types, first wave. --- offapi/com/sun/star/frame/ModuleManager.idl | 2 +- offapi/com/sun/star/frame/UnknownModuleException.idl | 2 +- offapi/com/sun/star/frame/XLayoutManager.idl | 2 +- .../com/sun/star/frame/XLayoutManagerEventBroadcaster.idl | 2 +- offapi/com/sun/star/frame/XLayoutManagerListener.idl | 2 +- offapi/com/sun/star/frame/XModuleManager.idl | 2 +- offapi/com/sun/star/frame/XTitle.idl | 14 ++++++++++---- 7 files changed, 16 insertions(+), 10 deletions(-) (limited to 'offapi/com/sun/star/frame') diff --git a/offapi/com/sun/star/frame/ModuleManager.idl b/offapi/com/sun/star/frame/ModuleManager.idl index 7a102da72bef..186e89858c20 100644 --- a/offapi/com/sun/star/frame/ModuleManager.idl +++ b/offapi/com/sun/star/frame/ModuleManager.idl @@ -51,7 +51,7 @@ module com { module sun { module star { module frame { @since OOo 2.0 */ -service ModuleManager +published service ModuleManager { //------------------------------------------- /** provides functions to identify office modules. diff --git a/offapi/com/sun/star/frame/UnknownModuleException.idl b/offapi/com/sun/star/frame/UnknownModuleException.idl index 9b3169c1dcbe..510cc08203e0 100644 --- a/offapi/com/sun/star/frame/UnknownModuleException.idl +++ b/offapi/com/sun/star/frame/UnknownModuleException.idl @@ -42,7 +42,7 @@ module com { module sun { module star { module frame { @since OOo 2.0 */ -exception UnknownModuleException : ::com::sun::star::uno::Exception +published exception UnknownModuleException : ::com::sun::star::uno::Exception { }; diff --git a/offapi/com/sun/star/frame/XLayoutManager.idl b/offapi/com/sun/star/frame/XLayoutManager.idl index 1801140d2965..f9f027dfa81d 100644 --- a/offapi/com/sun/star/frame/XLayoutManager.idl +++ b/offapi/com/sun/star/frame/XLayoutManager.idl @@ -98,7 +98,7 @@ module com { module sun { module star { module frame { @since OOo 2.0 */ -interface XLayoutManager : com::sun::star::uno::XInterface +published interface XLayoutManager : com::sun::star::uno::XInterface { /** attaches a XFrame to a layout manager. diff --git a/offapi/com/sun/star/frame/XLayoutManagerEventBroadcaster.idl b/offapi/com/sun/star/frame/XLayoutManagerEventBroadcaster.idl index fc7636e21e56..48d077815ca4 100644 --- a/offapi/com/sun/star/frame/XLayoutManagerEventBroadcaster.idl +++ b/offapi/com/sun/star/frame/XLayoutManagerEventBroadcaster.idl @@ -43,7 +43,7 @@ @since OOo 2.0 */ -interface XLayoutManagerEventBroadcaster : com::sun::star::uno::XInterface +published interface XLayoutManagerEventBroadcaster : com::sun::star::uno::XInterface { /** adds a layout manager event listener to the object's listener list. diff --git a/offapi/com/sun/star/frame/XLayoutManagerListener.idl b/offapi/com/sun/star/frame/XLayoutManagerListener.idl index 1a1cd9266917..6a47bd382e45 100644 --- a/offapi/com/sun/star/frame/XLayoutManagerListener.idl +++ b/offapi/com/sun/star/frame/XLayoutManagerListener.idl @@ -49,7 +49,7 @@ module com { module sun { module star { module frame { @since OOo 2.0 */ -interface XLayoutManagerListener : com::sun::star::lang::XEventListener +published interface XLayoutManagerListener : com::sun::star::lang::XEventListener { //============================================================================= /** is invoked when a layout manager has made a certain operation. diff --git a/offapi/com/sun/star/frame/XModuleManager.idl b/offapi/com/sun/star/frame/XModuleManager.idl index 0e1d8b8fe00e..c240e382322e 100644 --- a/offapi/com/sun/star/frame/XModuleManager.idl +++ b/offapi/com/sun/star/frame/XModuleManager.idl @@ -49,7 +49,7 @@ module com { module sun { module star { module frame { @since OOo 2.0 */ -interface XModuleManager : com::sun::star::uno::XInterface +published interface XModuleManager : com::sun::star::uno::XInterface { //------------------------------------------- /** diff --git a/offapi/com/sun/star/frame/XTitle.idl b/offapi/com/sun/star/frame/XTitle.idl index 0ce06aecb8f0..2bc71111f932 100644 --- a/offapi/com/sun/star/frame/XTitle.idl +++ b/offapi/com/sun/star/frame/XTitle.idl @@ -40,17 +40,23 @@ module com { module sun { module star { module frame { //============================================================================= -/** todo document me +/** an interface representing an entity with a modifyable title. */ -interface XTitle : com::sun::star::uno::XInterface +published interface XTitle : com::sun::star::uno::XInterface { //------------------------------------------------------------------------- - /** todo document me + /** Returns the title of the object. + * + * @returns + * The title. */ string getTitle (); //------------------------------------------------------------------------- - /** todo document me + /** Sets the title of the object. + * + * @param sTitle + * The title. */ void setTitle ( [in] string sTitle ); }; -- cgit