Bin empty @seealso, @param, @return etc metacomments

Change-Id: I9582afceb5daf5993bfca1445370d8a60030c3c5
This commit is contained in:
Tor Lillqvist
2014-04-06 20:02:08 +03:00
parent 1e0fae45a6
commit e32e7946aa
17 changed files with 0 additions and 163 deletions

View File

@@ -36,8 +36,6 @@ namespace framework{
@Attention If your wish to debug this inline code ... @Attention If your wish to debug this inline code ...
under windows and msdev you can use "set ENVCFLAGS=/Ob0" to do that! under windows and msdev you can use "set ENVCFLAGS=/Ob0" to do that!
@base -
@devstatus ready to use @devstatus ready to use
@threadsafe no @threadsafe no
*//*-*************************************************************************************************************/ *//*-*************************************************************************************************************/
@@ -57,8 +55,6 @@ class CheckedIterator
@descr Set default values on members. @descr Set default values on members.
We set it internal to E_UNKNOWN to detect uninitialized instances of this class. We set it internal to E_UNKNOWN to detect uninitialized instances of this class.
If we found one - we know: "We must call initialize first!" If we found one - we know: "We must call initialize first!"
@param -
@onerror -
*//*-*****************************************************************************************************/ *//*-*****************************************************************************************************/
inline CheckedIterator() inline CheckedIterator()
@@ -99,7 +95,6 @@ class CheckedIterator
We need it to return one default value if no other ones exist ... We need it to return one default value if no other ones exist ...
@seealso using in class FilterCache! @seealso using in class FilterCache!
@return -
*//*-*****************************************************************************************************/ *//*-*****************************************************************************************************/
inline void setEnd() inline void setEnd()
@@ -114,7 +109,6 @@ class CheckedIterator
We need it if we don't have a container but must prevent us against further searching! We need it if we don't have a container but must prevent us against further searching!
@seealso using in class FilterCache! @seealso using in class FilterCache!
@return -
*//*-*****************************************************************************************************/ *//*-*****************************************************************************************************/
inline void setAfterEnd() inline void setAfterEnd()
@@ -128,7 +122,6 @@ class CheckedIterator
@descr It must be called on an already initialized iterator. @descr It must be called on an already initialized iterator.
Means the member m_pContainer must be valid. Otherwise the reaction Means the member m_pContainer must be valid. Otherwise the reaction
isn't defined. isn't defined.
@return -
*//*-*****************************************************************************************************/ *//*-*****************************************************************************************************/
inline void reset() inline void reset()
@@ -221,7 +214,6 @@ class CheckedIterator
/*-**************************************************************************************************** /*-****************************************************************************************************
@short support readonly access to container entry @short support readonly access to container entry
@descr Use it to get the value of current container item. @descr Use it to get the value of current container item.
@param -
@return A reference to value of container entry. @return A reference to value of container entry.
*//*-*****************************************************************************************************/ *//*-*****************************************************************************************************/

View File

@@ -75,8 +75,6 @@ class FilterCache : private TransactionBase
/*-**************************************************************************************************** /*-****************************************************************************************************
@short standard destructor to delete instance @short standard destructor to delete instance
@descr This will clear the cache if last owner release it. @descr This will clear the cache if last owner release it.
@param -
@onerror -
*//*-*****************************************************************************************************/ *//*-*****************************************************************************************************/
virtual ~FilterCache(); virtual ~FilterCache();
@@ -86,8 +84,6 @@ class FilterCache : private TransactionBase
/*-**************************************************************************************************** /*-****************************************************************************************************
@short get the current state of the cache @short get the current state of the cache
@descr Call this methods to get information about the state of the current cache. @descr Call this methods to get information about the state of the current cache.
@param -
@return -
*//*-*****************************************************************************************************/ *//*-*****************************************************************************************************/
sal_Bool isValidOrRepairable() const; sal_Bool isValidOrRepairable() const;

View File

@@ -28,8 +28,6 @@ namespace framework{
@short implement wildcard-mechanism for unicode @short implement wildcard-mechanism for unicode
@descr This class can be used to get information about the matching of a pattern to a given text. @descr This class can be used to get information about the matching of a pattern to a given text.
It's suitable for 8-Bit- AND 16-Bit-strings! It's suitable for 8-Bit- AND 16-Bit-strings!
@base -
@ATTENTION This class is'nt threadsafe! @ATTENTION This class is'nt threadsafe!
@devstatus deprecated @devstatus deprecated
@@ -47,8 +45,6 @@ class Wildcard
/*-**************************************************************************************************** /*-****************************************************************************************************
@short standard ctor @short standard ctor
@descr We do nothing here. @descr We do nothing here.
@param -
@onerror -
*//*-*****************************************************************************************************/ *//*-*****************************************************************************************************/
Wildcard(); Wildcard();
@@ -56,8 +52,6 @@ class Wildcard
/*-**************************************************************************************************** /*-****************************************************************************************************
@short standard dtor @short standard dtor
@descr We do nothing here. @descr We do nothing here.
@param -
@onerror -
*//*-*****************************************************************************************************/ *//*-*****************************************************************************************************/
virtual ~Wildcard(); virtual ~Wildcard();

View File

@@ -88,7 +88,6 @@ class MenuDispatcher : public ::cppu::WeakImplHelper2<
@param "rxContext" , css::uno::Reference to servicemanager for creation of new services @param "rxContext" , css::uno::Reference to servicemanager for creation of new services
@param "xOwner" , css::uno::Reference to our owner, the Desktop!!! @param "xOwner" , css::uno::Reference to our owner, the Desktop!!!
@onerror -
*//*-*****************************************************************************************************/ *//*-*****************************************************************************************************/
MenuDispatcher( const css::uno::Reference< css::uno::XComponentContext >& rxContext , MenuDispatcher( const css::uno::Reference< css::uno::XComponentContext >& rxContext ,
@@ -101,7 +100,6 @@ class MenuDispatcher : public ::cppu::WeakImplHelper2<
@descr Every dispatch create a new task. If load of URL failed task will deleted automaticly! @descr Every dispatch create a new task. If load of URL failed task will deleted automaticly!
@param "aURL" , URL to dispatch. @param "aURL" , URL to dispatch.
@param "seqArguments" , list of optional arguments. @param "seqArguments" , list of optional arguments.
@onerror -
*//*-*****************************************************************************************************/ *//*-*****************************************************************************************************/
virtual void SAL_CALL dispatch( const css::util::URL& aURL , virtual void SAL_CALL dispatch( const css::util::URL& aURL ,
@@ -116,7 +114,6 @@ class MenuDispatcher : public ::cppu::WeakImplHelper2<
@param "xControl" , css::uno::Reference to a valid listener for state events. @param "xControl" , css::uno::Reference to a valid listener for state events.
@param "aURL" , URL about listener will be informed, if something occurred. @param "aURL" , URL about listener will be informed, if something occurred.
@onerror -
*//*-*****************************************************************************************************/ *//*-*****************************************************************************************************/
virtual void SAL_CALL addStatusListener( const css::uno::Reference< css::frame::XStatusListener >& xControl, virtual void SAL_CALL addStatusListener( const css::uno::Reference< css::frame::XStatusListener >& xControl,
@@ -131,7 +128,6 @@ class MenuDispatcher : public ::cppu::WeakImplHelper2<
@param "xControl" , css::uno::Reference to a valid listener. @param "xControl" , css::uno::Reference to a valid listener.
@param "aURL" , URL on which listener has registered. @param "aURL" , URL on which listener has registered.
@onerror -
*//*-*****************************************************************************************************/ *//*-*****************************************************************************************************/
virtual void SAL_CALL removeStatusListener( const css::uno::Reference< css::frame::XStatusListener >& xControl, virtual void SAL_CALL removeStatusListener( const css::uno::Reference< css::frame::XStatusListener >& xControl,
@@ -147,7 +143,6 @@ class MenuDispatcher : public ::cppu::WeakImplHelper2<
@short dispose current instance @short dispose current instance
@descr If service helper isn't required any longer call this method to release all used resources. @descr If service helper isn't required any longer call this method to release all used resources.
@param "aEvent", information about source of this event. @param "aEvent", information about source of this event.
@onerror -
*//*-*****************************************************************************************************/ *//*-*****************************************************************************************************/
void SAL_CALL disposing( const css::lang::EventObject& aEvent ) throw( css::uno::RuntimeException, std::exception ) SAL_OVERRIDE; void SAL_CALL disposing( const css::lang::EventObject& aEvent ) throw( css::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
@@ -161,8 +156,6 @@ class MenuDispatcher : public ::cppu::WeakImplHelper2<
@descr This method destruct an instance of this class and clear some member. @descr This method destruct an instance of this class and clear some member.
This method is protected, because its not allowed to use an instance of this class as a member! This method is protected, because its not allowed to use an instance of this class as a member!
You MUST use a pointer. You MUST use a pointer.
@param -
@onerror -
*//*-*****************************************************************************************************/ *//*-*****************************************************************************************************/
virtual ~MenuDispatcher(); virtual ~MenuDispatcher();
@@ -172,17 +165,11 @@ class MenuDispatcher : public ::cppu::WeakImplHelper2<
private: private:
/*-**************************************************************************************************** /*-****************************************************************************************************
@descr -
@param -
@onerror -
*//*-*****************************************************************************************************/ *//*-*****************************************************************************************************/
sal_Bool impl_setMenuBar( MenuBar* pMenuBar, sal_Bool bMenuFromResource = sal_False ); sal_Bool impl_setMenuBar( MenuBar* pMenuBar, sal_Bool bMenuFromResource = sal_False );
/*-**************************************************************************************************** /*-****************************************************************************************************
@descr -
@param -
@onerror -
*//*-*****************************************************************************************************/ *//*-*****************************************************************************************************/
void impl_setAccelerators( Menu* pMenu, const Accelerator& aAccel ); void impl_setAccelerators( Menu* pMenu, const Accelerator& aAccel );

View File

@@ -125,7 +125,6 @@ class OComponentAccess : public ::cppu::WeakImplHelper1< ::com::sun::star::co
Thats the reason for a protected dtor. Thats the reason for a protected dtor.
@seealso class Desktop @seealso class Desktop
@return -
*//*-*****************************************************************************************************/ *//*-*****************************************************************************************************/
virtual ~OComponentAccess(); virtual ~OComponentAccess();
@@ -143,7 +142,6 @@ class OComponentAccess : public ::cppu::WeakImplHelper1< ::com::sun::star::co
@param "xNode" , root of subtree and start point of search @param "xNode" , root of subtree and start point of search
@param "seqComponents", result list of search. We cant use a return value, we search recursive @param "seqComponents", result list of search. We cant use a return value, we search recursive
and must collect all information. and must collect all information.
@onerror -
*//*-*****************************************************************************************************/ *//*-*****************************************************************************************************/
void impl_collectAllChildComponents( const css::uno::Reference< css::frame::XFramesSupplier >& xNode , void impl_collectAllChildComponents( const css::uno::Reference< css::frame::XFramesSupplier >& xNode ,

View File

@@ -79,7 +79,6 @@ class OComponentEnumeration : public ::cppu::WeakImplHelper2< ::com::sun::star
@seealso interface XEventListener @seealso interface XEventListener
@param "aEvent" describe the source of this event. @param "aEvent" describe the source of this event.
@onerror -
*//*-*****************************************************************************************************/ *//*-*****************************************************************************************************/
virtual void SAL_CALL disposing( const css::lang::EventObject& aEvent ) throw( css::uno::RuntimeException, std::exception ) SAL_OVERRIDE; virtual void SAL_CALL disposing( const css::lang::EventObject& aEvent ) throw( css::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
@@ -124,8 +123,6 @@ class OComponentEnumeration : public ::cppu::WeakImplHelper2< ::com::sun::star
@descr This method destruct an instance of this class and clear some member. @descr This method destruct an instance of this class and clear some member.
We make it protected, because its not supported to use this class as normal instance! We make it protected, because its not supported to use this class as normal instance!
You must create it dynamical in memory and use a pointer. You must create it dynamical in memory and use a pointer.
@param -
@onerror -
*//*-*****************************************************************************************************/ *//*-*****************************************************************************************************/
virtual ~OComponentEnumeration(); virtual ~OComponentEnumeration();
@@ -140,7 +137,6 @@ class OComponentEnumeration : public ::cppu::WeakImplHelper2< ::com::sun::star
@seealso method dispose() @seealso method dispose()
@seealso destructor ~TaskEnumeration() @seealso destructor ~TaskEnumeration()
@return -
*//*-*****************************************************************************************************/ *//*-*****************************************************************************************************/
virtual void impl_resetObject(); virtual void impl_resetObject();

View File

@@ -64,7 +64,6 @@ class OFrames : public ::cppu::WeakImplHelper1< ::com::sun::star::frame::XFr
We share framecontainer with owner implementation! It's a threadsafe container. We share framecontainer with owner implementation! It's a threadsafe container.
@param xOwner , reference to ouer owner. We hold a wekreference to prevent us against cross-references! @param xOwner , reference to ouer owner. We hold a wekreference to prevent us against cross-references!
@param pFrameContainer , pointer to shared framecontainer of owner. It's valid only, if weakreference is valid! @param pFrameContainer , pointer to shared framecontainer of owner. It's valid only, if weakreference is valid!
@onerror -
*//*-*****************************************************************************************************/ *//*-*****************************************************************************************************/
OFrames( const css::uno::Reference< css::frame::XFrame >& xOwner , OFrames( const css::uno::Reference< css::frame::XFrame >& xOwner ,
FrameContainer* pFrameContainer ); FrameContainer* pFrameContainer );
@@ -144,7 +143,6 @@ class OFrames : public ::cppu::WeakImplHelper1< ::com::sun::star::frame::XFr
@short get uno-type of all container items @short get uno-type of all container items
@descr In current implementation type is fixed to XFrame! @descr In current implementation type is fixed to XFrame!
(container-lock is ignored) (container-lock is ignored)
@param -
@return A uno-type descriptor. @return A uno-type descriptor.
*//*-*****************************************************************************************************/ *//*-*****************************************************************************************************/
virtual css::uno::Type SAL_CALL getElementType() throw( css::uno::RuntimeException, std::exception ) SAL_OVERRIDE; virtual css::uno::Type SAL_CALL getElementType() throw( css::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
@@ -153,7 +151,6 @@ class OFrames : public ::cppu::WeakImplHelper1< ::com::sun::star::frame::XFr
@short get fill state of current container @short get fill state of current container
@descr Call these to get information about, if items exist in container or not. @descr Call these to get information about, if items exist in container or not.
(container-lock is ignored) (container-lock is ignored)
@param -
@return sal_True, if container contains some items. @return sal_True, if container contains some items.
@return sal_False, otherwise. @return sal_False, otherwise.
@@ -168,8 +165,6 @@ class OFrames : public ::cppu::WeakImplHelper1< ::com::sun::star::frame::XFr
@descr This method destruct an instance of this class and clear some member. @descr This method destruct an instance of this class and clear some member.
This method is protected, because its not allowed to use this class as a member! This method is protected, because its not allowed to use this class as a member!
You MUST use a dynamical instance (pointer). That's the reason for a protected dtor. You MUST use a dynamical instance (pointer). That's the reason for a protected dtor.
@param -
@onerror -
*//*-*****************************************************************************************************/ *//*-*****************************************************************************************************/
virtual ~OFrames(); virtual ~OFrames();
@@ -182,7 +177,6 @@ class OFrames : public ::cppu::WeakImplHelper1< ::com::sun::star::frame::XFr
@seealso method dispose() (if it exist!) @seealso method dispose() (if it exist!)
@seealso destructor ~TaskEnumeration() @seealso destructor ~TaskEnumeration()
@return -
*//*-*****************************************************************************************************/ *//*-*****************************************************************************************************/
virtual void impl_resetObject(); virtual void impl_resetObject();

View File

@@ -35,8 +35,6 @@
namespace framework{ namespace framework{
/*-************************************************************************************************************ /*-************************************************************************************************************
@descr -
@implements XInterface @implements XInterface
XTypeProvider XTypeProvider
XServiceInfo XServiceInfo
@@ -59,7 +57,6 @@ class MediaTypeDetectionHelper : public ::cppu::WeakImplHelper2< ::com::sun::
@short standard ctor @short standard ctor
@descr These initialize a new instance of this class with all needed information for work. @descr These initialize a new instance of this class with all needed information for work.
@param "xFactory", reference to factory which has created ouer owner(!). We can use these to create new uno-services. @param "xFactory", reference to factory which has created ouer owner(!). We can use these to create new uno-services.
@onerror -
*//*-*****************************************************************************************************/ *//*-*****************************************************************************************************/
MediaTypeDetectionHelper( const css::uno::Reference< css::lang::XMultiServiceFactory >& xFactory ); MediaTypeDetectionHelper( const css::uno::Reference< css::lang::XMultiServiceFactory >& xFactory );
@@ -67,8 +64,6 @@ class MediaTypeDetectionHelper : public ::cppu::WeakImplHelper2< ::com::sun::
/*-**************************************************************************************************** /*-****************************************************************************************************
@short standard destructor @short standard destructor
@descr This method destruct an instance of this class and clear some member. @descr This method destruct an instance of this class and clear some member.
@param -
@onerror -
*//*-*****************************************************************************************************/ *//*-*****************************************************************************************************/
virtual ~MediaTypeDetectionHelper(); virtual ~MediaTypeDetectionHelper();
@@ -80,9 +75,6 @@ class MediaTypeDetectionHelper : public ::cppu::WeakImplHelper2< ::com::sun::
// XStringMapping // XStringMapping
/*-**************************************************************************************************** /*-****************************************************************************************************
@descr -
@param -
@onerror -
*//*-*****************************************************************************************************/ *//*-*****************************************************************************************************/
virtual sal_Bool SAL_CALL mapStrings(css::uno::Sequence< OUString >& seqParameter) virtual sal_Bool SAL_CALL mapStrings(css::uno::Sequence< OUString >& seqParameter)

View File

@@ -53,8 +53,6 @@ class Gate : public IGate
/*-**************************************************************************************************** /*-****************************************************************************************************
@short ctor @short ctor
@descr These initialize the object right as an open gate. @descr These initialize the object right as an open gate.
@param -
@onerror -
*//*-*****************************************************************************************************/ *//*-*****************************************************************************************************/
inline Gate() inline Gate()
: m_bClosed ( sal_False ) : m_bClosed ( sal_False )
@@ -68,8 +66,6 @@ class Gate : public IGate
@descr Is user forget it - we open the gate ... @descr Is user forget it - we open the gate ...
blocked threads can running ... but I don't know blocked threads can running ... but I don't know
if it's right - we are destroyed yet!? if it's right - we are destroyed yet!?
@param -
@onerror -
*//*-*****************************************************************************************************/ *//*-*****************************************************************************************************/
inline virtual ~Gate() inline virtual ~Gate()
{ {
@@ -82,7 +78,6 @@ class Gate : public IGate
@descr A wait() call will not block then. @descr A wait() call will not block then.
@seealso method close() @seealso method close()
@return -
*//*-*****************************************************************************************************/ *//*-*****************************************************************************************************/
virtual void open() SAL_OVERRIDE virtual void open() SAL_OVERRIDE
{ {
@@ -101,7 +96,6 @@ class Gate : public IGate
@descr A wait() call will block then. @descr A wait() call will block then.
@seealso method open() @seealso method open()
@return -
*//*-*****************************************************************************************************/ *//*-*****************************************************************************************************/
virtual void close() SAL_OVERRIDE virtual void close() SAL_OVERRIDE
{ {
@@ -123,7 +117,6 @@ class Gate : public IGate
@seealso method wait() @seealso method wait()
@seealso method open() @seealso method open()
@return -
*//*-*****************************************************************************************************/ *//*-*****************************************************************************************************/
virtual void openGap() SAL_OVERRIDE virtual void openGap() SAL_OVERRIDE
{ {

View File

@@ -30,8 +30,6 @@ namespace framework{
you should have a look on this implementation. You must use it as the first base class you should have a look on this implementation. You must use it as the first base class
of your implementation - because base classes are initialized by his order and before your of your implementation - because base classes are initialized by his order and before your
member! Thats why ist a good place to declare this member. member! Thats why ist a good place to declare this member.
@base -
@devstatus ready to use @devstatus ready to use
*//*-*************************************************************************************************************/ *//*-*************************************************************************************************************/
struct TransactionBase struct TransactionBase

View File

@@ -55,7 +55,6 @@ class TransactionGuard : private boost::noncopyable
@param "rManager" reference to transaction manager for using to register a request @param "rManager" reference to transaction manager for using to register a request
@param "eMode" enable/disable throwing of exceptions for rejected calls @param "eMode" enable/disable throwing of exceptions for rejected calls
@param "eReason" returns reason for rejected calls if "eMode=E_NOEXCEPTIONS"! @param "eReason" returns reason for rejected calls if "eMode=E_NOEXCEPTIONS"!
@onerror -
*//*-*****************************************************************************************************/ *//*-*****************************************************************************************************/
inline TransactionGuard( ITransactionManager& rManager, EExceptionMode eMode, ERejectReason* eReason = NULL ) inline TransactionGuard( ITransactionManager& rManager, EExceptionMode eMode, ERejectReason* eReason = NULL )
: m_pManager( &rManager ) : m_pManager( &rManager )
@@ -77,8 +76,6 @@ class TransactionGuard : private boost::noncopyable
/*-************************************************************************************************************ /*-************************************************************************************************************
@short dtor @short dtor
@descr We must release the transaction manager and can forget his pointer. @descr We must release the transaction manager and can forget his pointer.
@param -
@onerror -
*//*-*************************************************************************************************************/ *//*-*************************************************************************************************************/
inline ~TransactionGuard() inline ~TransactionGuard()
{ {
@@ -92,8 +89,6 @@ class TransactionGuard : private boost::noncopyable
@attention We don't support any start() method here - because it is not easy to @attention We don't support any start() method here - because it is not easy to
detect if a transaction already started or not! detect if a transaction already started or not!
(combination of EExceptionMode and ERejectReason) (combination of EExceptionMode and ERejectReason)
@param -
@onerror -
*//*-*************************************************************************************************************/ *//*-*************************************************************************************************************/
inline void stop() inline void stop()
{ {
@@ -114,7 +109,6 @@ class TransactionGuard : private boost::noncopyable
Thats why we disable it by make it private. Thats why we disable it by make it private.
@seealso other ctor @seealso other ctor
@return -
*//*-*****************************************************************************************************/ *//*-*****************************************************************************************************/
TransactionGuard(); TransactionGuard();

View File

@@ -61,9 +61,6 @@ Oxt_Handler::Oxt_Handler( const css::uno::Reference< css::lang::XMultiServiceFac
/*-************************************************************************************************************ /*-************************************************************************************************************
@short standard dtor @short standard dtor
@seealso -
@return -
@threadsafe -
*//*-*************************************************************************************************************/ *//*-*************************************************************************************************************/
Oxt_Handler::~Oxt_Handler() Oxt_Handler::~Oxt_Handler()
{ {

View File

@@ -221,7 +221,6 @@ class AddonsOptions_Impl : public ConfigItem
@seealso baseclass ConfigItem @seealso baseclass ConfigItem
@param "lPropertyNames" is the list of properties which should be updated. @param "lPropertyNames" is the list of properties which should be updated.
@onerror -
*//*-*****************************************************************************************************/ *//*-*****************************************************************************************************/
virtual void Notify( const Sequence< OUString >& lPropertyNames ) SAL_OVERRIDE; virtual void Notify( const Sequence< OUString >& lPropertyNames ) SAL_OVERRIDE;
@@ -232,7 +231,6 @@ class AddonsOptions_Impl : public ConfigItem
and should always called in our destructor to guarantee consistency of config data. and should always called in our destructor to guarantee consistency of config data.
@seealso baseclass ConfigItem @seealso baseclass ConfigItem
@return -
*//*-*****************************************************************************************************/ *//*-*****************************************************************************************************/
virtual void Commit() SAL_OVERRIDE; virtual void Commit() SAL_OVERRIDE;
@@ -243,8 +241,6 @@ class AddonsOptions_Impl : public ConfigItem
@short base implementation of public interface for "SvtDynamicMenuOptions"! @short base implementation of public interface for "SvtDynamicMenuOptions"!
@descr These class is used as static member of "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! => The code exist only for one time and isn't duplicated for every instance!
@param -
@onerror -
*//*-*****************************************************************************************************/ *//*-*****************************************************************************************************/
bool HasAddonsMenu () const; bool HasAddonsMenu () const;

View File

@@ -28,8 +28,6 @@ namespace framework{
/*-************************************************************************************************************ /*-************************************************************************************************************
@short standard ctor @short standard ctor
@descr Initialize instance with right start values for correct working. @descr Initialize instance with right start values for correct working.
@param -
@onerror -
*//*-*************************************************************************************************************/ *//*-*************************************************************************************************************/
TransactionManager::TransactionManager() TransactionManager::TransactionManager()
: m_eWorkingMode ( E_INIT ) : m_eWorkingMode ( E_INIT )
@@ -40,8 +38,6 @@ TransactionManager::TransactionManager()
/*-************************************************************************************************************ /*-************************************************************************************************************
@short standard dtor @short standard dtor
@seealso -
@return -
*//*-*************************************************************************************************************/ *//*-*************************************************************************************************************/
TransactionManager::~TransactionManager() TransactionManager::~TransactionManager()
{ {
@@ -158,7 +154,6 @@ EWorkingMode TransactionManager::getWorkingMode() const
@param "eMode" ,used to enable/disable throwing exceptions automatically for rejected calls @param "eMode" ,used to enable/disable throwing exceptions automatically for rejected calls
@param "eReason" ,reason for rejected calls if eMode=E_NOEXCEPTIONS @param "eReason" ,reason for rejected calls if eMode=E_NOEXCEPTIONS
@onerror -
*//*-*****************************************************************************************************/ *//*-*****************************************************************************************************/
void TransactionManager::registerTransaction( EExceptionMode eMode, ERejectReason& eReason ) throw( css::uno::RuntimeException, css::lang::DisposedException ) void TransactionManager::registerTransaction( EExceptionMode eMode, ERejectReason& eReason ) throw( css::uno::RuntimeException, css::lang::DisposedException )
{ {
@@ -192,7 +187,6 @@ void TransactionManager::registerTransaction( EExceptionMode eMode, ERejectReas
@descr A guard should call this method to release current transaction. @descr A guard should call this method to release current transaction.
@seealso method registerTransaction() @seealso method registerTransaction()
@return -
*//*-*****************************************************************************************************/ *//*-*****************************************************************************************************/
void TransactionManager::unregisterTransaction() throw( css::uno::RuntimeException, css::lang::DisposedException ) void TransactionManager::unregisterTransaction() throw( css::uno::RuntimeException, css::lang::DisposedException )
{ {
@@ -253,7 +247,6 @@ sal_Bool TransactionManager::isCallRejected( ERejectReason& eReason ) const
@param "eReason" , reason for rejected call @param "eReason" , reason for rejected call
@param "eMode" , exception mode - set by user @param "eMode" , exception mode - set by user
@onerror -
*//*-*****************************************************************************************************/ *//*-*****************************************************************************************************/
void TransactionManager::impl_throwExceptions( EExceptionMode eMode, ERejectReason eReason ) const throw( css::uno::RuntimeException, css::lang::DisposedException ) void TransactionManager::impl_throwExceptions( EExceptionMode eMode, ERejectReason eReason ) const throw( css::uno::RuntimeException, css::lang::DisposedException )
{ {

View File

@@ -181,7 +181,6 @@ Desktop::Desktop( const css::uno::Reference< css::uno::XComponentContext >& xCon
@descr This one do NOTHING! Use dispose() instaed of this. @descr This one do NOTHING! Use dispose() instaed of this.
@seealso method dispose() @seealso method dispose()
@return -
*//*-*************************************************************************************************************/ *//*-*************************************************************************************************************/
Desktop::~Desktop() Desktop::~Desktop()
{ {
@@ -778,8 +777,6 @@ css::uno::Reference< css::frame::XFrame > SAL_CALL Desktop::getActiveFrame() thr
@short non implemented methods! @short non implemented methods!
@descr Some method make no sense for our desktop! He has no window or parent or ... @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! So we should implement it empty and warn programmer, if he use it!
@param -
@onerror -
*/ */
void SAL_CALL Desktop::initialize( const css::uno::Reference< css::awt::XWindow >& ) throw( css::uno::RuntimeException, std::exception ) void SAL_CALL Desktop::initialize( const css::uno::Reference< css::awt::XWindow >& ) throw( css::uno::RuntimeException, std::exception )
{ {
@@ -1093,7 +1090,6 @@ void SAL_CALL Desktop::disposing()
@attention Our container is threadsafe himeslf. So we don't need any lock here. @attention Our container is threadsafe himeslf. So we don't need any lock here.
@param "xListener", reference to valid listener. We don't accept invalid values! @param "xListener", reference to valid listener. We don't accept invalid values!
@onerror -
@threadsafe yes @threadsafe yes
*/ */
void SAL_CALL Desktop::addEventListener( const css::uno::Reference< css::lang::XEventListener >& xListener ) throw( css::uno::RuntimeException, std::exception ) void SAL_CALL Desktop::addEventListener( const css::uno::Reference< css::lang::XEventListener >& xListener ) throw( css::uno::RuntimeException, std::exception )
@@ -1131,7 +1127,6 @@ void SAL_CALL Desktop::removeEventListener( const css::uno::Reference< css::lang
@seealso method loadComponentFromURL() @seealso method loadComponentFromURL()
@param "aEvent", state event which (hopefully) valid information @param "aEvent", state event which (hopefully) valid information
@onerror -
@threadsafe yes @threadsafe yes
*//*-*************************************************************************************************************/ *//*-*************************************************************************************************************/
void SAL_CALL Desktop::dispatchFinished( const css::frame::DispatchResultEvent& aEvent ) throw( css::uno::RuntimeException, std::exception ) void SAL_CALL Desktop::dispatchFinished( const css::frame::DispatchResultEvent& aEvent ) throw( css::uno::RuntimeException, std::exception )
@@ -1161,8 +1156,6 @@ 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. We are a temp. listener only and our lifetime isn't smaller then of our temp. used dispatcher.
@seealso method loadComponentFromURL() @seealso method loadComponentFromURL()
@return -
@threadsafe -
*//*-*************************************************************************************************************/ *//*-*************************************************************************************************************/
void SAL_CALL Desktop::disposing( const css::lang::EventObject& ) throw( css::uno::RuntimeException, std::exception ) void SAL_CALL Desktop::disposing( const css::lang::EventObject& ) throw( css::uno::RuntimeException, std::exception )
{ {
@@ -1187,7 +1180,6 @@ void SAL_CALL Desktop::disposing( const css::lang::EventObject& ) throw( css::un
@seealso member m_eLoadState @seealso member m_eLoadState
@param "xRequest", request for interaction - normal a wrapped target exception from bottom services @param "xRequest", request for interaction - normal a wrapped target exception from bottom services
@onerror -
@threadsafe yes @threadsafe yes
*//*-*************************************************************************************************************/ *//*-*************************************************************************************************************/
void SAL_CALL Desktop::handle( const css::uno::Reference< css::task::XInteractionRequest >& xRequest ) throw( css::uno::RuntimeException, std::exception ) void SAL_CALL Desktop::handle( const css::uno::Reference< css::task::XInteractionRequest >& xRequest ) throw( css::uno::RuntimeException, std::exception )
@@ -1407,7 +1399,6 @@ void SAL_CALL Desktop::setFastPropertyValue_NoBroadcast( sal_Int32
@param "nHandle" handle of property to change @param "nHandle" handle of property to change
@param "aValue" current value of property @param "aValue" current value of property
@onerror -
@threadsafe yes @threadsafe yes
*//*-*************************************************************************************************************/ *//*-*************************************************************************************************************/
void SAL_CALL Desktop::getFastPropertyValue( css::uno::Any& aValue , void SAL_CALL Desktop::getFastPropertyValue( css::uno::Any& aValue ,

View File

@@ -603,7 +603,6 @@ void Frame::initListeners()
@descr This one do NOTHING! Use dispose() instaed of this. @descr This one do NOTHING! Use dispose() instaed of this.
@seealso method dispose() @seealso method dispose()
@return -
*//*-*****************************************************************************************************/ *//*-*****************************************************************************************************/
Frame::~Frame() Frame::~Frame()
{ {
@@ -1309,7 +1308,6 @@ sal_Bool SAL_CALL Frame::isTop() throw( css::uno::RuntimeException, std::excepti
@seealso method isActivate() @seealso method isActivate()
@seealso enum EActiveState @seealso enum EActiveState
@seealso listener mechanism @seealso listener mechanism
@return -
*//*-*****************************************************************************************************/ *//*-*****************************************************************************************************/
void SAL_CALL Frame::activate() throw( css::uno::RuntimeException, std::exception ) void SAL_CALL Frame::activate() throw( css::uno::RuntimeException, std::exception )
{ {
@@ -1395,7 +1393,6 @@ void SAL_CALL Frame::activate() throw( css::uno::RuntimeException, std::exceptio
@seealso method isActivate() @seealso method isActivate()
@seealso enum EActiveState @seealso enum EActiveState
@seealso listener mechanism @seealso listener mechanism
@return -
*//*-*****************************************************************************************************/ *//*-*****************************************************************************************************/
void SAL_CALL Frame::deactivate() throw( css::uno::RuntimeException, std::exception ) void SAL_CALL Frame::deactivate() throw( css::uno::RuntimeException, std::exception )
{ {
@@ -1488,8 +1485,6 @@ sal_Bool SAL_CALL Frame::isActive() throw( css::uno::RuntimeException, std::exce
/*-**************************************************************************************************** /*-****************************************************************************************************
@short ??? @short ???
@seealso -
@return -
*//*-*****************************************************************************************************/ *//*-*****************************************************************************************************/
void SAL_CALL Frame::contextChanged() throw( css::uno::RuntimeException, std::exception ) void SAL_CALL Frame::contextChanged() throw( css::uno::RuntimeException, std::exception )
{ {
@@ -2022,7 +2017,6 @@ void Frame::implts_forgetSubFrames()
@seealso method initialize() @seealso method initialize()
@seealso baseclass FairRWLockBase! @seealso baseclass FairRWLockBase!
@return -
*//*-*****************************************************************************************************/ *//*-*****************************************************************************************************/
void SAL_CALL Frame::dispose() throw( css::uno::RuntimeException, std::exception ) void SAL_CALL Frame::dispose() throw( css::uno::RuntimeException, std::exception )
{ {
@@ -2352,7 +2346,6 @@ css::uno::Sequence< css::frame::DispatchInformation > SAL_CALL Frame::getConfigu
@seealso member m_xComponentWindow @seealso member m_xComponentWindow
@param "aEvent" describe source of detected event @param "aEvent" describe source of detected event
@onerror -
*//*-*****************************************************************************************************/ *//*-*****************************************************************************************************/
void SAL_CALL Frame::windowResized( const css::awt::WindowEvent& aEvent ) throw( css::uno::RuntimeException, std::exception ) void SAL_CALL Frame::windowResized( const css::awt::WindowEvent& aEvent ) throw( css::uno::RuntimeException, std::exception )
{ {
@@ -2403,7 +2396,6 @@ void SAL_CALL Frame::focusGained( const css::awt::FocusEvent& aEvent ) throw( cs
@seealso member m_xComponentWindow @seealso member m_xComponentWindow
@param "aEvent" describe source of detected event @param "aEvent" describe source of detected event
@onerror -
*//*-*****************************************************************************************************/ *//*-*****************************************************************************************************/
void SAL_CALL Frame::windowActivated( const css::lang::EventObject& aEvent ) throw( css::uno::RuntimeException, std::exception ) void SAL_CALL Frame::windowActivated( const css::lang::EventObject& aEvent ) throw( css::uno::RuntimeException, std::exception )
{ {
@@ -2597,7 +2589,6 @@ void SAL_CALL Frame::windowHidden( const css::lang::EventObject& ) throw(css::un
@seealso XWindowListener @seealso XWindowListener
@seealso XTopWindowListener @seealso XTopWindowListener
@seealso XFocusListener @seealso XFocusListener
@return -
*//*-*****************************************************************************************************/ *//*-*****************************************************************************************************/
void SAL_CALL Frame::disposing( const css::lang::EventObject& aEvent ) throw( css::uno::RuntimeException, std::exception ) void SAL_CALL Frame::disposing( const css::lang::EventObject& aEvent ) throw( css::uno::RuntimeException, std::exception )
{ {
@@ -2861,7 +2852,6 @@ void Frame::impl_disposeContainerWindow( css::uno::Reference< css::awt::XWindow
@short send frame action event to our listener @short send frame action event to our listener
@descr This method is threadsafe AND can be called by our dispose method too! @descr This method is threadsafe AND can be called by our dispose method too!
@param "aAction", describe the event for sending @param "aAction", describe the event for sending
@onerror -
*//*-*****************************************************************************************************/ *//*-*****************************************************************************************************/
void Frame::implts_sendFrameActionEvent( const css::frame::FrameAction& aAction ) void Frame::implts_sendFrameActionEvent( const css::frame::FrameAction& aAction )
{ {
@@ -2918,8 +2908,6 @@ void Frame::implts_sendFrameActionEvent( const css::frame::FrameAction& aAction
@descr A frame contains 2 windows - a container ~ and a component window. @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 resize inner component window to full size of outer container window.
This method is threadsafe AND can be called by our dispose method too! This method is threadsafe AND can be called by our dispose method too!
@param -
@onerror -
*//*-*****************************************************************************************************/ *//*-*****************************************************************************************************/
void Frame::implts_resizeComponentWindow() void Frame::implts_resizeComponentWindow()
{ {
@@ -2951,8 +2939,6 @@ void Frame::implts_resizeComponentWindow()
too ... we should ask his optional property set first ... too ... we should ask his optional property set first ...
@seealso method Window::SetIcon() @seealso method Window::SetIcon()
@return -
@onerror We do nothing. @onerror We do nothing.
*//*-*****************************************************************************************************/ *//*-*****************************************************************************************************/
void Frame::implts_setIconOnWindow() void Frame::implts_setIconOnWindow()
@@ -3042,8 +3028,6 @@ void Frame::implts_setIconOnWindow()
@seealso method initialize() @seealso method initialize()
@seealso method dispose() @seealso method dispose()
@return -
@onerror We do nothing! @onerror We do nothing!
@threadsafe yes @threadsafe yes
*//*-*************************************************************************************************************/ *//*-*************************************************************************************************************/

View File

@@ -128,11 +128,6 @@ class AddonsOptions_Impl;
/*-************************************************************************************************************ /*-************************************************************************************************************
@short collect information about menu features @short collect information about menu features
@descr -
@implements -
@base -
@devstatus ready to use @devstatus ready to use
*//*-*************************************************************************************************************/ *//*-*************************************************************************************************************/
@@ -156,11 +151,6 @@ class FWE_DLLPUBLIC AddonsOptions
@seealso member m_nRefCount @seealso member m_nRefCount
@seealso member m_pDataContainer @seealso member m_pDataContainer
@param -
@return -
@onerror -
*//*-*****************************************************************************************************/ *//*-*****************************************************************************************************/
AddonsOptions(); AddonsOptions();
@@ -174,13 +164,7 @@ class FWE_DLLPUBLIC AddonsOptions
@short clears completely the addons menu @short clears completely the addons menu
@descr Call this methods to clear the addons menu @descr Call this methods to clear the addons menu
To fill it again use AppendItem(). To fill it again use AppendItem().
@seealso -
@param "eMenu" select right menu to clear. @param "eMenu" select right menu to clear.
@return -
@onerror -
*//*-*****************************************************************************************************/ *//*-*****************************************************************************************************/
void Clear(); void Clear();
@@ -208,9 +192,6 @@ class FWE_DLLPUBLIC AddonsOptions
@short returns the complete addons menu @short returns the complete addons menu
@descr Call it to get all entries of the addon menu. @descr Call it to get all entries of the addon menu.
We return a list of all nodes with his names and properties. We return a list of all nodes with his names and properties.
@seealso -
@return A list of menu items is returned. @return A list of menu items is returned.
@onerror We return an empty list. @onerror We return an empty list.
@@ -220,10 +201,6 @@ class FWE_DLLPUBLIC AddonsOptions
/*-**************************************************************************************************** /*-****************************************************************************************************
@short Gets the menu bar part of all addon components registered @short Gets the menu bar part of all addon components registered
@descr -
@seealso -
@return A complete @return A complete
@onerror We return sal_False @onerror We return sal_False
@@ -233,10 +210,6 @@ class FWE_DLLPUBLIC AddonsOptions
/*-**************************************************************************************************** /*-****************************************************************************************************
@short Gets a toolbar part of an single addon @short Gets a toolbar part of an single addon
@descr -
@seealso -
@return A complete @return A complete
@onerror We return sal_False @onerror We return sal_False
@@ -246,10 +219,6 @@ class FWE_DLLPUBLIC AddonsOptions
/*-**************************************************************************************************** /*-****************************************************************************************************
@short Gets a unique toolbar resource name of an single addon @short Gets a unique toolbar resource name of an single addon
@descr -
@seealso -
@return A complete @return A complete
@onerror We return sal_False @onerror We return sal_False
@@ -259,10 +228,6 @@ class FWE_DLLPUBLIC AddonsOptions
/*-**************************************************************************************************** /*-****************************************************************************************************
@short Retrieves all available merge instructions for the Office menu bar @short Retrieves all available merge instructions for the Office menu bar
@descr -
@seealso -
@return The filled MergeMenuDefinitionContaier @return The filled MergeMenuDefinitionContaier
@onerror We return sal_False @onerror We return sal_False
@@ -272,10 +237,6 @@ class FWE_DLLPUBLIC AddonsOptions
/*-**************************************************************************************************** /*-****************************************************************************************************
@short Retrieves all available merge instructions for a single toolbar @short Retrieves all available merge instructions for a single toolbar
@descr -
@seealso -
@return The filled @return The filled
@onerror We return sal_False @onerror We return sal_False
@@ -284,10 +245,6 @@ class FWE_DLLPUBLIC AddonsOptions
/*-**************************************************************************************************** /*-****************************************************************************************************
@short Gets the Add-On help menu part of all addon components registered @short Gets the Add-On help menu part of all addon components registered
@descr -
@seealso -
@return A complete @return A complete
@onerror We return sal_False @onerror We return sal_False
@@ -299,9 +256,6 @@ class FWE_DLLPUBLIC AddonsOptions
/*-**************************************************************************************************** /*-****************************************************************************************************
@short Retrieve an image for a command URL which is defined inside the addon menu configuration @short Retrieve an image for a command URL which is defined inside the addon menu configuration
@descr Call it to retrieve an image for a command URL which is defined inside the addon menu configuration @descr Call it to retrieve an image for a command URL which is defined inside the addon menu configuration
@seealso -
@return An image which was defined in the configuration for the menu item. The image can be empty @return An image which was defined in the configuration for the menu item. The image can be empty
no bitmap was defined for the request image properties. no bitmap was defined for the request image properties.
@@ -320,13 +274,7 @@ class FWE_DLLPUBLIC AddonsOptions
@descr These class is partially threadsafe (for de-/initialization only). @descr These class is partially threadsafe (for de-/initialization only).
All access methods are'nt safe! All access methods are'nt safe!
We create a static mutex only for one ime and use at different times. We create a static mutex only for one ime and use at different times.
@seealso -
@param -
@return A reference to a static mutex member. @return A reference to a static mutex member.
@onerror -
*//*-*****************************************************************************************************/ *//*-*****************************************************************************************************/
static ::osl::Mutex& GetOwnStaticMutex(); static ::osl::Mutex& GetOwnStaticMutex();
@@ -336,13 +284,7 @@ class FWE_DLLPUBLIC AddonsOptions
@descr These class is partially threadsafe (for de-/initialization only). @descr These class is partially threadsafe (for de-/initialization only).
All access methods are'nt safe! All access methods are'nt safe!
We create a static mutex only for one ime and use at different times. We create a static mutex only for one ime and use at different times.
@seealso -
@param -
@return A reference to a static mutex member. @return A reference to a static mutex member.
@onerror -
*//*-*****************************************************************************************************/ *//*-*****************************************************************************************************/
DECL_STATIC_LINK( AddonsOptions, Notify, void* ); DECL_STATIC_LINK( AddonsOptions, Notify, void* );