summaryrefslogtreecommitdiff
path: root/inc/dpmember.hxx
blob: b85bf02e3a44a5516a5dac3d4f58c63da7e786b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#ifndef __DPMEMBER_HXX__
#define __DPMEMBER_HXX__

#include <cppuhelper/implbase2.hxx>

#include <com/sun/star/beans/XPropertySet.hpp>
#include <com/sun/star/container/XNamed.hpp>

namespace dpsource {

class DPMember : public ::cppu::WeakImplHelper2< 
                            ::com::sun::star::beans::XPropertySet,
                            ::com::sun::star::container::XNamed >
{
public:
    DPMember();
    ~DPMember();

    // XNamed

    ::rtl::OUString SAL_CALL getName() throw (::com::sun::star::uno::RuntimeException);

    void SAL_CALL setName(const ::rtl::OUString& aName) 
        throw (::com::sun::star::uno::RuntimeException);

    // XPropertySet

    virtual ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySetInfo > 
        SAL_CALL getPropertySetInfo() throw (::com::sun::star::uno::RuntimeException);

    virtual void SAL_CALL setPropertyValue(
        const ::rtl::OUString& aPropertyName, const ::com::sun::star::uno::Any& aValue)
            throw (::com::sun::star::beans::UnknownPropertyException, 
                   ::com::sun::star::beans::PropertyVetoException, 
                   ::com::sun::star::lang::IllegalArgumentException, 
                   ::com::sun::star::lang::WrappedTargetException, 
                   ::com::sun::star::uno::RuntimeException);

    virtual ::com::sun::star::uno::Any SAL_CALL 
        getPropertyValue(const ::rtl::OUString& aPropertyName)
            throw (::com::sun::star::beans::UnknownPropertyException, 
                   ::com::sun::star::lang::WrappedTargetException,
                   ::com::sun::star::uno::RuntimeException);

    virtual void SAL_CALL addPropertyChangeListener(
        const ::rtl::OUString& aPropertyName, 
        const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertyChangeListener >& xListener)
            throw (::com::sun::star::beans::UnknownPropertyException, 
                   ::com::sun::star::lang::WrappedTargetException, 
                   ::com::sun::star::uno::RuntimeException);

    virtual void SAL_CALL removePropertyChangeListener(
        const ::rtl::OUString& aPropertyName, 
        const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertyChangeListener >& aListener) 
            throw (::com::sun::star::beans::UnknownPropertyException, 
                   ::com::sun::star::lang::WrappedTargetException, 
                   ::com::sun::star::uno::RuntimeException);

    virtual void SAL_CALL addVetoableChangeListener(
        const ::rtl::OUString& PropertyName, 
        const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XVetoableChangeListener >& aListener)
            throw (::com::sun::star::beans::UnknownPropertyException,
                   ::com::sun::star::lang::WrappedTargetException,
                   ::com::sun::star::uno::RuntimeException);

    virtual void SAL_CALL removeVetoableChangeListener(
        const ::rtl::OUString& PropertyName, 
        const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XVetoableChangeListener >& aListener)
            throw (::com::sun::star::beans::UnknownPropertyException,
                   ::com::sun::star::lang::WrappedTargetException,
                   ::com::sun::star::uno::RuntimeException);

private:
    ::rtl::OUString maName;
};

}

#endif