Lines Matching refs:aPropertyName
35 void throwUnknown( const ::rtl::OUString& aPropertyName ) in throwUnknown() argument
39 aPropertyName + in throwUnknown()
45 void throwVeto( const ::rtl::OUString& aPropertyName ) in throwVeto() argument
49 aPropertyName + in throwVeto()
103 bool PropertySetHelper::isPropertyName( const ::rtl::OUString& aPropertyName ) const in isPropertyName()
109 return mpMap->lookup( aPropertyName, in isPropertyName()
119 void PropertySetHelper::setPropertyValue( const ::rtl::OUString& aPropertyName, in setPropertyValue() argument
124 !mpMap->lookup( aPropertyName, in setPropertyValue()
127 throwUnknown( aPropertyName ); in setPropertyValue()
131 throwVeto( aPropertyName ); in setPropertyValue()
136 uno::Any PropertySetHelper::getPropertyValue( const ::rtl::OUString& aPropertyName ) const in getPropertyValue()
140 !mpMap->lookup( aPropertyName, in getPropertyValue()
143 throwUnknown( aPropertyName ); in getPropertyValue()
154 …:addPropertyChangeListener( const ::rtl::OUString& aPropertyName, in addPropertyChangeListener() argument
159 if( !isPropertyName( aPropertyName ) ) in addPropertyChangeListener()
160 throwUnknown( aPropertyName ); in addPropertyChangeListener()
169 …:addVetoableChangeListener( const ::rtl::OUString& aPropertyName, in addVetoableChangeListener() argument
174 if( !isPropertyName( aPropertyName ) ) in addVetoableChangeListener()
175 throwUnknown( aPropertyName ); in addVetoableChangeListener()