Broke long method declarations into several lines.
This commit is contained in:
parent
26d3db0ac1
commit
656fd381e1
2 changed files with 56 additions and 19 deletions
|
@ -131,24 +131,41 @@ public:
|
|||
|
||||
// XAccessibleStateSet
|
||||
|
||||
virtual ::sal_Bool SAL_CALL isEmpty() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::sal_Bool SAL_CALL contains(sal_Int16 nState) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::sal_Bool SAL_CALL containsAll(const ::com::sun::star::uno::Sequence< ::sal_Int16 >& aStateSet) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence<sal_Int16> SAL_CALL getStates() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Bool SAL_CALL isEmpty() throw (::com::sun::star::uno::RuntimeException);
|
||||
|
||||
virtual sal_Bool SAL_CALL contains(sal_Int16 nState)
|
||||
throw (::com::sun::star::uno::RuntimeException);
|
||||
|
||||
virtual sal_Bool SAL_CALL containsAll(
|
||||
const ::com::sun::star::uno::Sequence<sal_Int16>& aStateSet)
|
||||
throw (::com::sun::star::uno::RuntimeException);
|
||||
|
||||
virtual ::com::sun::star::uno::Sequence<sal_Int16> SAL_CALL getStates()
|
||||
throw (::com::sun::star::uno::RuntimeException);
|
||||
|
||||
// XAccessibleSelection
|
||||
|
||||
virtual void SAL_CALL selectAccessibleChild( ::sal_Int32 nChildIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::sal_Bool SAL_CALL isAccessibleChildSelected( ::sal_Int32 nChildIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual void SAL_CALL clearAccessibleSelection( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual void SAL_CALL selectAllAccessibleChildren( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::sal_Int32 SAL_CALL getSelectedAccessibleChildCount( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual void SAL_CALL selectAccessibleChild(sal_Int32 nChildIndex)
|
||||
throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
|
||||
virtual sal_Bool SAL_CALL isAccessibleChildSelected(sal_Int32 nChildIndex)
|
||||
throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
|
||||
virtual void SAL_CALL clearAccessibleSelection()
|
||||
throw (::com::sun::star::uno::RuntimeException);
|
||||
|
||||
virtual void SAL_CALL selectAllAccessibleChildren()
|
||||
throw (::com::sun::star::uno::RuntimeException);
|
||||
|
||||
virtual ::sal_Int32 SAL_CALL getSelectedAccessibleChildCount()
|
||||
throw (::com::sun::star::uno::RuntimeException);
|
||||
|
||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > SAL_CALL
|
||||
getSelectedAccessibleChild(sal_Int32 nChildIndex)
|
||||
throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
|
||||
virtual void SAL_CALL deselectAccessibleChild( ::sal_Int32 nChildIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual void SAL_CALL deselectAccessibleChild(sal_Int32 nChildIndex)
|
||||
throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
|
||||
// XInterface
|
||||
|
||||
|
|
|
@ -59,7 +59,8 @@ public:
|
|||
virtual sal_Int32 SAL_CALL getAccessibleChildCount()
|
||||
throw (::com::sun::star::uno::RuntimeException);
|
||||
|
||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible> SAL_CALL
|
||||
virtual ::com::sun::star::uno::Reference<
|
||||
::com::sun::star::accessibility::XAccessible > SAL_CALL
|
||||
getAccessibleChild(sal_Int32 nIndex)
|
||||
throw (::com::sun::star::uno::RuntimeException, ::com::sun::star::lang::IndexOutOfBoundsException);
|
||||
|
||||
|
@ -73,17 +74,36 @@ public:
|
|||
|
||||
// XAccessibleStateSet
|
||||
|
||||
virtual ::sal_Bool SAL_CALL isEmpty() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::sal_Bool SAL_CALL contains(sal_Int16 nState) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::sal_Bool SAL_CALL containsAll(const ::com::sun::star::uno::Sequence< ::sal_Int16 >& aStateSet) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence<sal_Int16> SAL_CALL getStates() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::sal_Bool SAL_CALL isEmpty()
|
||||
throw (::com::sun::star::uno::RuntimeException);
|
||||
|
||||
virtual ::sal_Bool SAL_CALL contains(sal_Int16 nState)
|
||||
throw (::com::sun::star::uno::RuntimeException);
|
||||
|
||||
virtual ::sal_Bool SAL_CALL containsAll(
|
||||
const ::com::sun::star::uno::Sequence<sal_Int16>& aStateSet)
|
||||
throw (::com::sun::star::uno::RuntimeException);
|
||||
|
||||
virtual ::com::sun::star::uno::Sequence<sal_Int16> SAL_CALL getStates()
|
||||
throw (::com::sun::star::uno::RuntimeException);
|
||||
|
||||
// XAccessibleAction
|
||||
|
||||
virtual ::sal_Int32 SAL_CALL getAccessibleActionCount( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::sal_Bool SAL_CALL doAccessibleAction( ::sal_Int32 nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getAccessibleActionDescription( ::sal_Int32 nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleKeyBinding > SAL_CALL getAccessibleActionKeyBinding( ::sal_Int32 nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::sal_Int32 SAL_CALL getAccessibleActionCount()
|
||||
throw (::com::sun::star::uno::RuntimeException);
|
||||
|
||||
virtual ::sal_Bool SAL_CALL doAccessibleAction(sal_Int32 nIndex)
|
||||
throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
|
||||
virtual ::rtl::OUString SAL_CALL getAccessibleActionDescription(sal_Int32 nIndex)
|
||||
throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
|
||||
virtual ::com::sun::star::uno::Reference<
|
||||
::com::sun::star::accessibility::XAccessibleKeyBinding > SAL_CALL
|
||||
getAccessibleActionKeyBinding(sal_Int32 nIndex)
|
||||
throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
|
||||
// XInterface
|
||||
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface(
|
||||
::com::sun::star::uno::Type const & rType )
|
||||
|
|
Loading…
Reference in a new issue