summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/frame
diff options
context:
space:
mode:
authorKai Sommerfeld <kso@openoffice.org>2011-03-15 21:47:26 +0100
committerKai Sommerfeld <kso@openoffice.org>2011-03-15 21:47:26 +0100
commit65162840e329afee6f401f5a91273c2dbd1bbdf8 (patch)
treef4eb65f23bcfef318075f99036a0357e9cd84ccc /offapi/com/sun/star/frame
parent5d493f49ae63249f4781a9e7228dda55fb0fff13 (diff)
#i117329# - Publishing of UNO types, first wave.
Diffstat (limited to 'offapi/com/sun/star/frame')
-rw-r--r--offapi/com/sun/star/frame/ModuleManager.idl2
-rw-r--r--offapi/com/sun/star/frame/UnknownModuleException.idl2
-rw-r--r--offapi/com/sun/star/frame/XLayoutManager.idl2
-rw-r--r--offapi/com/sun/star/frame/XLayoutManagerEventBroadcaster.idl2
-rw-r--r--offapi/com/sun/star/frame/XLayoutManagerListener.idl2
-rw-r--r--offapi/com/sun/star/frame/XModuleManager.idl2
-rw-r--r--offapi/com/sun/star/frame/XTitle.idl14
7 files changed, 16 insertions, 10 deletions
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 <type scope="com::sun::star::frame">XFrame</type> 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 );
};