summaryrefslogtreecommitdiff
path: root/framework/source
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2014-04-06 19:36:43 +0300
committerTor Lillqvist <tml@collabora.com>2014-04-06 19:37:48 +0300
commitf4e8d2ad0e591b87d2c221761363a3042628d5ff (patch)
treee60c5dd70876182d0c578ca251d08d902d34886d /framework/source
parentee3945bd98194010656fa9b3366e7471b9f160fd (diff)
Bin empty @seealso, @param, @return and @onerror metacomments
Change-Id: I30a761a21a98419816c4b67258664becd79e2db1
Diffstat (limited to 'framework/source')
-rw-r--r--framework/source/classes/framecontainer.cxx8
-rw-r--r--framework/source/dispatch/mailtodispatcher.cxx2
-rw-r--r--framework/source/dispatch/oxt_handler.cxx13
-rw-r--r--framework/source/dispatch/servicehandler.cxx2
-rw-r--r--framework/source/fwe/classes/addonsoptions.cxx16
-rw-r--r--framework/source/fwi/threadhelp/transactionmanager.cxx29
-rw-r--r--framework/source/jobs/jobresult.cxx1
-rw-r--r--framework/source/services/desktop.cxx56
-rw-r--r--framework/source/services/frame.cxx96
9 files changed, 0 insertions, 223 deletions
diff --git a/framework/source/classes/framecontainer.cxx b/framework/source/classes/framecontainer.cxx
index 32e52be8f386..5e4806fc23f9 100644
--- a/framework/source/classes/framecontainer.cxx
+++ b/framework/source/classes/framecontainer.cxx
@@ -99,8 +99,6 @@ void FrameContainer::remove( const css::uno::Reference< css::frame::XFrame >& xF
/**-***************************************************************************************************************
@short check if the given frame currently exist inside the container
- @descr -
-
@param xFrame
reference to the queried frame
@@ -117,8 +115,6 @@ sal_Bool FrameContainer::exist( const css::uno::Reference< css::frame::XFrame >&
/**-***************************************************************************************************************
@short delete all existing items of the container
- @descr -
-
@threadsafe yes
*****************************************************************************************************************/
void FrameContainer::clear()
@@ -134,8 +130,6 @@ void FrameContainer::clear()
/**-***************************************************************************************************************
@short returns count of all current existing frames
- @descr -
-
@deprecated This value can't be guaranteed for multithreading environments.
So it will be marked as deprecated and should be replaced by "getAllElements()".
@@ -151,8 +145,6 @@ sal_uInt32 FrameContainer::getCount() const
/**-***************************************************************************************************************
@short returns one item of this container
- @descr -
-
@deprecated This value can't be guaranteed for multithreading environments.
So it will be marked as deprecatedf and should be replaced by "getAllElements()".
diff --git a/framework/source/dispatch/mailtodispatcher.cxx b/framework/source/dispatch/mailtodispatcher.cxx
index 409970392ae6..160bddc5fcb1 100644
--- a/framework/source/dispatch/mailtodispatcher.cxx
+++ b/framework/source/dispatch/mailtodispatcher.cxx
@@ -60,7 +60,6 @@ MailToDispatcher::MailToDispatcher( const css::uno::Reference< css::uno::XCompon
/**
@short standard dtor
- @descr -
*/
MailToDispatcher::~MailToDispatcher()
{
@@ -87,7 +86,6 @@ css::uno::Reference< css::frame::XDispatch > SAL_CALL MailToDispatcher::queryDis
/**
@short do the same like dispatch() but for multiple requests at the same time
- @descr -
*/
css::uno::Sequence< css::uno::Reference< css::frame::XDispatch > > SAL_CALL MailToDispatcher::queryDispatches( const css::uno::Sequence< css::frame::DispatchDescriptor >& lDescriptor ) throw( css::uno::RuntimeException, std::exception )
{
diff --git a/framework/source/dispatch/oxt_handler.cxx b/framework/source/dispatch/oxt_handler.cxx
index eac9f2daf027..ee1806f81c79 100644
--- a/framework/source/dispatch/oxt_handler.cxx
+++ b/framework/source/dispatch/oxt_handler.cxx
@@ -51,8 +51,6 @@ DEFINE_INIT_SERVICE ( Oxt_Handler,
@seealso using at owner
@param "xFactory", reference to service manager for creation of new services
- @return -
-
@onerror Show an assertion and do nothing else.
@threadsafe yes
*//*-*************************************************************************************************************/
@@ -63,14 +61,8 @@ Oxt_Handler::Oxt_Handler( const css::uno::Reference< css::lang::XMultiServiceFac
/*-************************************************************************************************************
@short standard dtor
- @descr -
-
@seealso -
-
- @param -
@return -
-
- @onerror -
@threadsafe -
*//*-*************************************************************************************************************/
Oxt_Handler::~Oxt_Handler()
@@ -101,8 +93,6 @@ Oxt_Handler::~Oxt_Handler()
@param "aURL" , URL to dispatch.
@param "lArguments", list of optional arguments.
- @return -
-
@onerror We do nothing.
@threadsafe yes
*//*-*************************************************************************************************************/
@@ -154,9 +144,6 @@ void SAL_CALL Oxt_Handler::dispatch( const css::util::URL&
Another reason to do so ... We are a listener on our internal ma_Player object.
If you would call "IsSoundFile()" on this instance, he would call us back and
we make some unnecessary things ...
-
- @seealso -
-
@param "lDescriptor", description of file to detect
@return Internal type name which match this file ... or nothing if it is unknown.
diff --git a/framework/source/dispatch/servicehandler.cxx b/framework/source/dispatch/servicehandler.cxx
index 6b5630c64061..46d8ecde9b3b 100644
--- a/framework/source/dispatch/servicehandler.cxx
+++ b/framework/source/dispatch/servicehandler.cxx
@@ -62,7 +62,6 @@ ServiceHandler::ServiceHandler( const css::uno::Reference< css::lang::XMultiServ
/**
@short standard dtor
- @descr -
*/
ServiceHandler::~ServiceHandler()
{
@@ -89,7 +88,6 @@ css::uno::Reference< css::frame::XDispatch > SAL_CALL ServiceHandler::queryDispa
/**
@short do the same like dispatch() but for multiple requests at the same time
- @descr -
*/
css::uno::Sequence< css::uno::Reference< css::frame::XDispatch > > SAL_CALL ServiceHandler::queryDispatches( const css::uno::Sequence< css::frame::DispatchDescriptor >& lDescriptor ) throw( css::uno::RuntimeException, std::exception )
{
diff --git a/framework/source/fwe/classes/addonsoptions.cxx b/framework/source/fwe/classes/addonsoptions.cxx
index 368131890c62..7c5f49f88223 100644
--- a/framework/source/fwe/classes/addonsoptions.cxx
+++ b/framework/source/fwe/classes/addonsoptions.cxx
@@ -221,8 +221,6 @@ class AddonsOptions_Impl : public ConfigItem
@seealso baseclass ConfigItem
@param "lPropertyNames" is the list of properties which should be updated.
- @return -
-
@onerror -
*//*-*****************************************************************************************************/
@@ -234,11 +232,7 @@ class AddonsOptions_Impl : public ConfigItem
and should always called in our destructor to guarantee consistency of config data.
@seealso baseclass ConfigItem
-
- @param -
@return -
-
- @onerror -
*//*-*****************************************************************************************************/
virtual void Commit() SAL_OVERRIDE;
@@ -249,12 +243,7 @@ class AddonsOptions_Impl : public ConfigItem
@short base implementation of public interface for "SvtDynamicMenuOptions"!
@descr These class is used as static member of "SvtDynamicMenuOptions" ...
=> The code exist only for one time and isn't duplicated for every instance!
-
- @seealso -
-
@param -
- @return -
-
@onerror -
*//*-*****************************************************************************************************/
@@ -302,13 +291,8 @@ class AddonsOptions_Impl : public ConfigItem
@short return list of key names of our configuration management which represent oue module tree
@descr These methods return the current list of key names! We need it to get needed values from our
configuration management!
-
- @seealso -
-
@param "nCount" , returns count of menu entries for "new"
@return A list of configuration key names is returned.
-
- @onerror -
*//*-*****************************************************************************************************/
bool ReadAddonMenuSet( Sequence< Sequence< PropertyValue > >& aAddonMenuSeq );
diff --git a/framework/source/fwi/threadhelp/transactionmanager.cxx b/framework/source/fwi/threadhelp/transactionmanager.cxx
index a5cbf48e30c4..7c1ef34eafa3 100644
--- a/framework/source/fwi/threadhelp/transactionmanager.cxx
+++ b/framework/source/fwi/threadhelp/transactionmanager.cxx
@@ -28,12 +28,7 @@ namespace framework{
/*-************************************************************************************************************
@short standard ctor
@descr Initialize instance with right start values for correct working.
-
- @seealso -
-
@param -
- @return -
-
@onerror -
*//*-*************************************************************************************************************/
TransactionManager::TransactionManager()
@@ -45,14 +40,8 @@ TransactionManager::TransactionManager()
/*-************************************************************************************************************
@short standard dtor
- @descr -
-
@seealso -
-
- @param -
@return -
-
- @onerror -
*//*-*************************************************************************************************************/
TransactionManager::~TransactionManager()
{
@@ -78,12 +67,7 @@ TransactionManager::~TransactionManager()
E_CLOSE : Object is already dead! All further requests will be refused.
It's your decision to react in a right way.
-
- @seealso -
-
@param "eMode", is the new mode - but we don't accept setting mode in wrong order!
- @return -
-
@onerror We do nothing.
*//*-*****************************************************************************************************/
void TransactionManager::setWorkingMode( EWorkingMode eMode )
@@ -151,8 +135,6 @@ void TransactionManager::setWorkingMode( EWorkingMode eMode )
}
@seealso method setWorkingMode()
-
- @param -
@return Current set mode.
@onerror No error should occur.
@@ -176,8 +158,6 @@ EWorkingMode TransactionManager::getWorkingMode() const
@param "eMode" ,used to enable/disable throwing exceptions automatically for rejected calls
@param "eReason" ,reason for rejected calls if eMode=E_NOEXCEPTIONS
- @return -
-
@onerror -
*//*-*****************************************************************************************************/
void TransactionManager::registerTransaction( EExceptionMode eMode, ERejectReason& eReason ) throw( css::uno::RuntimeException, css::lang::DisposedException )
@@ -212,11 +192,7 @@ void TransactionManager::registerTransaction( EExceptionMode eMode, ERejectReas
@descr A guard should call this method to release current transaction.
@seealso method registerTransaction()
-
- @param -
@return -
-
- @onerror -
*//*-*****************************************************************************************************/
void TransactionManager::unregisterTransaction() throw( css::uno::RuntimeException, css::lang::DisposedException )
{
@@ -240,9 +216,6 @@ void TransactionManager::unregisterTransaction() throw( css::uno::RuntimeExcept
@short look for rejected calls
@descr Sometimes user need a possibility to get information about rejected calls
without starting a transaction!
-
- @seealso -
-
@param "eReason" returns reason of a rejected call
@return true if call was rejected, false otherwise
@@ -280,8 +253,6 @@ sal_Bool TransactionManager::isCallRejected( ERejectReason& eReason ) const
@param "eReason" , reason for rejected call
@param "eMode" , exception mode - set by user
- @return -
-
@onerror -
*//*-*****************************************************************************************************/
void TransactionManager::impl_throwExceptions( EExceptionMode eMode, ERejectReason eReason ) const throw( css::uno::RuntimeException, css::lang::DisposedException )
diff --git a/framework/source/jobs/jobresult.cxx b/framework/source/jobs/jobresult.cxx
index 535ee7a0642c..8544172a3f06 100644
--- a/framework/source/jobs/jobresult.cxx
+++ b/framework/source/jobs/jobresult.cxx
@@ -128,7 +128,6 @@ JobResult::JobResult( /*IN*/ const css::uno::Any& aResult )
/**
@short copy dtor
- @descr -
*/
JobResult::JobResult( const JobResult& rCopy )
{
diff --git a/framework/source/services/desktop.cxx b/framework/source/services/desktop.cxx
index 6db80cbb58d5..c60fe59c482f 100644
--- a/framework/source/services/desktop.cxx
+++ b/framework/source/services/desktop.cxx
@@ -147,8 +147,6 @@ void Desktop::constructorInit()
@param "xFactory" is the multi service manager, which create this instance.
The value must be different from NULL!
- @return -
-
@onerror We throw an ASSERT in debug version or do nothing in relaese version.
*//*-*************************************************************************************************************/
Desktop::Desktop( const css::uno::Reference< css::uno::XComponentContext >& xContext )
@@ -183,11 +181,7 @@ Desktop::Desktop( const css::uno::Reference< css::uno::XComponentContext >& xCon
@descr This one do NOTHING! Use dispose() instaed of this.
@seealso method dispose()
-
- @param -
@return -
-
- @onerror -
*//*-*************************************************************************************************************/
Desktop::~Desktop()
{
@@ -455,8 +449,6 @@ void SAL_CALL Desktop::removeTerminateListener( const css::uno::Reference< css::
@seealso class TasksAccess
@seealso class TasksEnumeration
-
- @param -
@return A reference to an XEnumerationAccess-object.
@onerror We return a null-reference.
@@ -482,8 +474,6 @@ css::uno::Reference< css::container::XEnumerationAccess > SAL_CALL Desktop::getC
@seealso method getCurrentFrame()
@seealso method impl_getFrameComponent()
-
- @param -
@return A reference to the component.
@onerror We return a null-reference.
@@ -518,8 +508,6 @@ css::uno::Reference< css::lang::XComponent > SAL_CALL Desktop::getCurrentCompone
a direct child of us and should be a part(!) of an active path.
@seealso method getActiveFrame()
-
- @param -
@return A valid reference, if there is an active frame.
A null reference , otherwise.
@@ -554,9 +542,6 @@ css::uno::Reference< css::frame::XFrame > SAL_CALL Desktop::getCurrentFrame() th
@descr You can give us some information about the content, which you will load into a frame.
We search or create this target for you, make a type detection of given URL and try to load it.
As result of this operation we return the new created component or nothing, if loading failed.
-
- @seealso -
-
@param "sURL" , URL, which represant the content
@param "sTargetFrameName" , name of target frame or special value like "_self", "_blank" ...
@param "nSearchFlags" , optional arguments for frame search, if target isn't a special one
@@ -599,8 +584,6 @@ But; Don't forget - you will be the owner of returned object and must release it
@attention Normaly we don't need any lock here. We don't work on internal member!
@seealso class TasksAccess
-
- @param -
@return A reference to an accessobject, which can create enumerations of ouer childtasks.
@onerror A null reference is returned.
@@ -623,8 +606,6 @@ css::uno::Reference< css::container::XEnumerationAccess > SAL_CALL Desktop::getT
b) We don't need any lock here. Our container is threadsafe himself and live, if we live!
@seealso method getCurrentFrame()
-
- @param -
@return A reference to ouer current active taskchild.
@onerror A null reference is returned.
@@ -730,8 +711,6 @@ void SAL_CALL Desktop::releaseDispatchProviderInterceptor ( const css::uno::Refe
@attention Helper is threadsafe himself. So we don't need any lock here.
@seealso class OFrames
-
- @param -
@return A reference to the helper.
@onerror A null reference is returned.
@@ -799,14 +778,8 @@ css::uno::Reference< css::frame::XFrame > SAL_CALL Desktop::getActiveFrame() thr
@short non implemented methods!
@descr Some method make no sense for our desktop! He has no window or parent or ...
So we should implement it empty and warn programmer, if he use it!
-
- @seealso -
-
@param -
- @return -
-
@onerror -
- @threadsafe -
*/
void SAL_CALL Desktop::initialize( const css::uno::Reference< css::awt::XWindow >& ) throw( css::uno::RuntimeException, std::exception )
{
@@ -1119,12 +1092,7 @@ void SAL_CALL Desktop::disposing()
You must releas ethis listener reference during your own disposing() method.
@attention Our container is threadsafe himeslf. So we don't need any lock here.
-
- @seealso -
-
@param "xListener", reference to valid listener. We don't accept invalid values!
- @return -
-
@onerror -
@threadsafe yes
*/
@@ -1163,8 +1131,6 @@ void SAL_CALL Desktop::removeEventListener( const css::uno::Reference< css::lang
@seealso method loadComponentFromURL()
@param "aEvent", state event which (hopefully) valid information
- @return -
-
@onerror -
@threadsafe yes
*//*-*************************************************************************************************************/
@@ -1195,11 +1161,7 @@ void SAL_CALL Desktop::dispatchFinished( const css::frame::DispatchResultEvent&
We are a temp. listener only and our lifetime isn't smaller then of our temp. used dispatcher.
@seealso method loadComponentFromURL()
-
- @param -
@return -
-
- @onerror -
@threadsafe -
*//*-*************************************************************************************************************/
void SAL_CALL Desktop::disposing( const css::lang::EventObject& ) throw( css::uno::RuntimeException, std::exception )
@@ -1225,8 +1187,6 @@ void SAL_CALL Desktop::disposing( const css::lang::EventObject& ) throw( css::un
@seealso member m_eLoadState
@param "xRequest", request for interaction - normal a wrapped target exception from bottom services
- @return -
-
@onerror -
@threadsafe yes
*//*-*************************************************************************************************************/
@@ -1415,8 +1375,6 @@ sal_Bool SAL_CALL Desktop::convertFastPropertyValue( css::uno::Any& aCon
@param "nHandle" handle of property to change
@param "aValue" new value of property
- @return -
-
@onerror An exception is thrown.
@threadsafe yes
*//*-*************************************************************************************************************/
@@ -1449,8 +1407,6 @@ void SAL_CALL Desktop::setFastPropertyValue_NoBroadcast( sal_Int32
@param "nHandle" handle of property to change
@param "aValue" current value of property
- @return -
-
@onerror -
@threadsafe yes
*//*-*************************************************************************************************************/
@@ -1486,11 +1442,7 @@ void SAL_CALL Desktop::getFastPropertyValue( css::uno::Any& aValue ,
So we could have two different mutex/lock mechanism at the same object.
@seealso class OPropertySetHelper
-
- @param -
@return structure with property-information
-
- @onerror -
@threadsafe yes
*//*-*************************************************************************************************************/
::cppu::IPropertyArrayHelper& SAL_CALL Desktop::getInfoHelper()
@@ -1534,11 +1486,7 @@ void SAL_CALL Desktop::getFastPropertyValue( css::uno::Any& aValue ,
@seealso class OPropertySetHelper
@seealso interface XPropertySet
@seealso interface XMultiPropertySet
-
- @param -
@return reference to object with information [XPropertySetInfo]
-
- @onerror -
@threadsafe yes
*//*-*************************************************************************************************************/
css::uno::Reference< css::beans::XPropertySetInfo > SAL_CALL Desktop::getPropertySetInfo() throw (::com::sun::star::uno::RuntimeException, std::exception)
@@ -1629,11 +1577,7 @@ css::uno::Reference< css::lang::XComponent > Desktop::impl_getFrameComponent( co
@seealso class OPropertySetHelper
@seealso method getInfoHelper()
-
- @param -
@return Static table with information about properties.
-
- @onerror -
@threadsafe yes
*//*-*************************************************************************************************************/
const css::uno::Sequence< css::beans::Property > Desktop::impl_getStaticPropertyDescriptor()
diff --git a/framework/source/services/frame.cxx b/framework/source/services/frame.cxx
index dc0abd799480..ce3f9bf11131 100644
--- a/framework/source/services/frame.cxx
+++ b/framework/source/services/frame.cxx
@@ -521,8 +521,6 @@ DEFINE_XTYPEPROVIDER_21 ( Frame
@param xContext is the multi service manager, which creates this instance.
The value must be different from NULL!
- @return -
-
@onerror ASSERT in debug version or nothing in relaese version.
*//*-*****************************************************************************************************/
Frame::Frame( const css::uno::Reference< css::uno::XComponentContext >& xContext )
@@ -605,11 +603,7 @@ void Frame::initListeners()
@descr This one do NOTHING! Use dispose() instaed of this.
@seealso method dispose()
-
- @param -
@return -
-
- @onerror -
*//*-*****************************************************************************************************/
Frame::~Frame()
{
@@ -622,9 +616,6 @@ Frame::~Frame()
@descr You can give us some information about the content, which you will load into a frame.
We search or create this target for you, make a type detection of given URL and try to load it.
As result of this operation we return the new created component or nothing, if loading failed.
-
- @seealso -
-
@param "sURL" , URL, which represant the content
@param "sTargetFrameName" , name of target frame or special value like "_self", "_blank" ...
@param "nSearchFlags" , optional arguments for frame search, if target isn't a special one
@@ -666,8 +657,6 @@ css::uno::Reference< css::lang::XComponent > SAL_CALL Frame::loadComponentFromUR
a reference to the helper.
@seealso class OFrames
-
- @param -
@return A reference to the helper which answer your queries.
@onerror A null reference is returned.
@@ -700,8 +689,6 @@ css::uno::Reference< css::frame::XFrames > SAL_CALL Frame::getFrames() throw( cs
@seealso class OFrameContainer
@seealso method setActiveFrame()
-
- @param -
@return A reference to ouer current active childframe, if anyone exist.
@return A null reference, if nobody is active.
@@ -729,8 +716,6 @@ css::uno::Reference< css::frame::XFrame > SAL_CALL Frame::getActiveFrame() throw
@seealso method getActiveFrame()
@param "xFrame", reference to new active child. It must be an already existing child!
- @return -
-
@onerror An assertion is thrown and element is ignored, if given frame is'nt already a child of us.
*//*-*****************************************************************************************************/
void SAL_CALL Frame::setActiveFrame( const css::uno::Reference< css::frame::XFrame >& xFrame ) throw( css::uno::RuntimeException, std::exception )
@@ -842,8 +827,6 @@ void lcl_disableLayoutManager(const css::uno::Reference< css::frame::XLayoutMana
@seealso member m_xContainerWindow
@param "xWindow", reference to new container window - must be valid!
- @return -
-
@onerror We do nothing.
*//*-*****************************************************************************************************/
void SAL_CALL Frame::initialize( const css::uno::Reference< css::awt::XWindow >& xWindow ) throw( css::uno::RuntimeException, std::exception )
@@ -923,8 +906,6 @@ void SAL_CALL Frame::initialize( const css::uno::Reference< css::awt::XWindow >&
The frame is the owner of its container window.
@seealso method initialize()
-
- @param -
@return A reference to current set containerwindow.
@onerror A null reference is returned.
@@ -975,8 +956,6 @@ void SAL_CALL Frame::setCreator( const css::uno::Reference< css::frame::XFramesS
@descr The Creator is the parent frame container. If it is NULL, the frame is the uppermost one.
@seealso method setCreator()
-
- @param -
@return A reference to current set parent frame container.
@onerror A null reference is returned.
@@ -996,8 +975,6 @@ css::uno::Reference< css::frame::XFramesSupplier > SAL_CALL Frame::getCreator()
@descr This name is used to find target of findFrame() or queryDispatch() calls.
@seealso method setName()
-
- @param -
@return Current set name of frame.
@onerror An empty string is returned.
@@ -1018,8 +995,6 @@ OUString SAL_CALL Frame::getName() throw( css::uno::RuntimeException, std::excep
@seealso method getName()
@param "sName", new frame name.
- @return -
-
@onerror We do nothing.
*//*-*****************************************************************************************************/
void SAL_CALL Frame::setName( const OUString& sName ) throw( css::uno::RuntimeException, std::exception )
@@ -1300,7 +1275,6 @@ css::uno::Reference< css::frame::XFrame > SAL_CALL Frame::findFrame( const OUStr
}
/*-****************************************************************************************************
- @short -
@descr Returns sal_True, if this frame is a "top frame", otherwise sal_False.
The "m_bIsFrameTop" member must be set in the ctor or setCreator() method.
A top frame is a member of the top frame container or a member of the
@@ -1310,8 +1284,6 @@ css::uno::Reference< css::frame::XFrame > SAL_CALL Frame::findFrame( const OUStr
@seealso ctor
@seealso method setCreator()
@seealso method findFrame()
-
- @param -
@return true, if is it a top frame ... false otherwise.
@onerror No error should occur!
@@ -1337,11 +1309,7 @@ sal_Bool SAL_CALL Frame::isTop() throw( css::uno::RuntimeException, std::excepti
@seealso method isActivate()
@seealso enum EActiveState
@seealso listener mechanism
-
- @param -
@return -
-
- @onerror -
*//*-*****************************************************************************************************/
void SAL_CALL Frame::activate() throw( css::uno::RuntimeException, std::exception )
{
@@ -1427,11 +1395,7 @@ void SAL_CALL Frame::activate() throw( css::uno::RuntimeException, std::exceptio
@seealso method isActivate()
@seealso enum EActiveState
@seealso listener mechanism
-
- @param -
@return -
-
- @onerror -
*//*-*****************************************************************************************************/
void SAL_CALL Frame::deactivate() throw( css::uno::RuntimeException, std::exception )
{
@@ -1505,8 +1469,6 @@ void SAL_CALL Frame::deactivate() throw( css::uno::RuntimeException, std::except
@seealso method activate()
@seealso method deactivate()
@seealso enum EActiveState
-
- @param -
@return true if active, false otherwise.
@onerror No error should occur.
@@ -1526,14 +1488,8 @@ sal_Bool SAL_CALL Frame::isActive() throw( css::uno::RuntimeException, std::exce
/*-****************************************************************************************************
@short ???
- @descr -
-
@seealso -
-
- @param -
@return -
-
- @onerror -
*//*-*****************************************************************************************************/
void SAL_CALL Frame::contextChanged() throw( css::uno::RuntimeException, std::exception )
{
@@ -1727,8 +1683,6 @@ sal_Bool SAL_CALL Frame::setComponent( const css::uno::Reference< css::awt::X
This frame is the owner of the component window.
@seealso method setComponent()
-
- @param -
@return css::uno::Reference to current set component window.
@onerror A null reference is returned.
@@ -1755,8 +1709,6 @@ css::uno::Reference< css::awt::XWindow > SAL_CALL Frame::getComponentWindow() th
This frame is the owner of the component window.
@seealso method setComponent()
-
- @param -
@return css::uno::Reference to current set controller.
@onerror A null reference is returned.
@@ -1769,15 +1721,11 @@ css::uno::Reference< css::frame::XController > SAL_CALL Frame::getController() t
/*-****************************************************************************************************
@short add/remove listener for activate/deactivate/contextChanged events
- @descr -
-
@seealso method activate()
@seealso method deactivate()
@seealso method contextChanged()
@param "xListener" reference to your listener object
- @return -
-
@onerror Listener is ignored.
*//*-*****************************************************************************************************/
void SAL_CALL Frame::addFrameActionListener( const css::uno::Reference< css::frame::XFrameActionListener >& xListener ) throw( css::uno::RuntimeException, std::exception )
@@ -2074,11 +2022,7 @@ void Frame::implts_forgetSubFrames()
@seealso method initialize()
@seealso baseclass FairRWLockBase!
-
- @param -
@return -
-
- @onerror -
*//*-*****************************************************************************************************/
void SAL_CALL Frame::dispose() throw( css::uno::RuntimeException, std::exception )
{
@@ -2212,12 +2156,7 @@ void SAL_CALL Frame::dispose() throw( css::uno::RuntimeException, std::exception
@short Be a listener for dispose events!
@descr Adds/remove an EventListener to this object. If the dispose method is called on
this object, the disposing method of the listener is called.
-
- @seealso -
-
@param "xListener" reference to your listener object.
- @return -
-
@onerror Listener is ignored.
*//*-*****************************************************************************************************/
void SAL_CALL Frame::addEventListener( const css::uno::Reference< css::lang::XEventListener >& xListener ) throw( css::uno::RuntimeException, std::exception )
@@ -2254,8 +2193,6 @@ void SAL_CALL Frame::removeEventListener( const css::uno::Reference< css::lang::
@seealso class StatusIndicatorFactory
@seealso class StatusIndicator
-
- @param -
@return A reference to created object.
@onerror We return a null reference.
@@ -2363,8 +2300,6 @@ css::uno::Sequence< css::uno::Reference< css::frame::XDispatch > > SAL_CALL Fram
@seealso class OInterceptionHelper
@param "xInterceptor", reference to your interceptor implementation.
- @return -
-
@onerror Interceptor is ignored.
*//*-*****************************************************************************************************/
void SAL_CALL Frame::registerDispatchProviderInterceptor( const css::uno::Reference< css::frame::XDispatchProviderInterceptor >& xInterceptor ) throw( css::uno::RuntimeException, std::exception )
@@ -2417,8 +2352,6 @@ css::uno::Sequence< css::frame::DispatchInformation > SAL_CALL Frame::getConfigu
@seealso member m_xComponentWindow
@param "aEvent" describe source of detected event
- @return -
-
@onerror -
*//*-*****************************************************************************************************/
void SAL_CALL Frame::windowResized( const css::awt::WindowEvent& aEvent ) throw( css::uno::RuntimeException, std::exception )
@@ -2470,8 +2403,6 @@ void SAL_CALL Frame::focusGained( const css::awt::FocusEvent& aEvent ) throw( cs
@seealso member m_xComponentWindow
@param "aEvent" describe source of detected event
- @return -
-
@onerror -
*//*-*****************************************************************************************************/
void SAL_CALL Frame::windowActivated( const css::lang::EventObject& aEvent ) throw( css::uno::RuntimeException, std::exception )
@@ -2666,11 +2597,7 @@ void SAL_CALL Frame::windowHidden( const css::lang::EventObject& ) throw(css::un
@seealso XWindowListener
@seealso XTopWindowListener
@seealso XFocusListener
-
- @param -
@return -
-
- @onerror -
*//*-*****************************************************************************************************/
void SAL_CALL Frame::disposing( const css::lang::EventObject& aEvent ) throw( css::uno::RuntimeException, std::exception )
{
@@ -2705,12 +2632,8 @@ void SAL_CALL Frame::disposing( const css::lang::EventObject& aEvent ) throw( cs
@seealso interface XActionLockable
@seeelso method BaseDispatcher::implts_loadIt()
@seeelso method Desktop::loadComponentFromURL()
-
- @param -
@return true if frame/task is locked
false otherwise
-
- @onerror -
@threadsafe yes
*//*-*************************************************************************************************************/
sal_Bool SAL_CALL Frame::isActionLocked() throw( css::uno::RuntimeException, std::exception )
@@ -2918,13 +2841,8 @@ css::uno::Any SAL_CALL Frame::impl_getPropertyValue(const OUString& /*sProperty*
/*-****************************************************************************************************
@short dispose old container window and forget his reference
@descr Sometimes we must repair our "modal dialog parent mechanism" too!
-
- @seealso -
-
@param "xWindow", reference to old container window to dispose it
@return An empty reference.
-
- @onerror -
@threadsafe NO!
*//*-*****************************************************************************************************/
void Frame::impl_disposeContainerWindow( css::uno::Reference< css::awt::XWindow >& xWindow )
@@ -2942,12 +2860,7 @@ void Frame::impl_disposeContainerWindow( css::uno::Reference< css::awt::XWindow
/*-****************************************************************************************************
@short send frame action event to our listener
@descr This method is threadsafe AND can be called by our dispose method too!
-
- @seealso -
-
@param "aAction", describe the event for sending
- @return -
-
@onerror -
*//*-*****************************************************************************************************/
void Frame::implts_sendFrameActionEvent( const css::frame::FrameAction& aAction )
@@ -3005,12 +2918,7 @@ void Frame::implts_sendFrameActionEvent( const css::frame::FrameAction& aAction
@descr A frame contains 2 windows - a container ~ and a component window.
This method resize inner component window to full size of outer container window.
This method is threadsafe AND can be called by our dispose method too!
-
- @seealso -
-
@param -
- @return -
-
@onerror -
*//*-*****************************************************************************************************/
void Frame::implts_resizeComponentWindow()
@@ -3043,8 +2951,6 @@ void Frame::implts_resizeComponentWindow()
too ... we should ask his optional property set first ...
@seealso method Window::SetIcon()
-
- @param -
@return -
@onerror We do nothing.
@@ -3136,8 +3042,6 @@ void Frame::implts_setIconOnWindow()
@seealso method initialize()
@seealso method dispose()
-
- @param -
@return -
@onerror We do nothing!