Lines Matching refs:PropertyName

60 …virtual Any SAL_CALL getPropertyValue( const OUString& PropertyName ) throw(UnknownPropertyExcepti…
63 …virtual void SAL_CALL addVetoableChangeListener( const OUString& PropertyName, const Reference< XV…
64 …virtual void SAL_CALL removeVetoableChangeListener( const OUString& PropertyName, const Reference<…
67 …virtual PropertyState SAL_CALL getPropertyState( const OUString& PropertyName ) throw(UnknownPrope…
69 …virtual void SAL_CALL setPropertyToDefault( const OUString& PropertyName ) throw(UnknownPropertyEx…
114 Any SAL_CALL PropertySetMergerImpl::getPropertyValue( const OUString& PropertyName ) throw(UnknownP… in getPropertyValue() argument
116 if( mxPropSet1Info->hasPropertyByName( PropertyName ) ) in getPropertyValue()
118 return mxPropSet1->getPropertyValue( PropertyName ); in getPropertyValue()
122 return mxPropSet2->getPropertyValue( PropertyName ); in getPropertyValue()
143 PropertyState SAL_CALL PropertySetMergerImpl::getPropertyState( const OUString& PropertyName ) thro… in getPropertyState() argument
145 if( mxPropSet1Info->hasPropertyByName( PropertyName ) ) in getPropertyState()
149 return mxPropSet1State->getPropertyState( PropertyName ); in getPropertyState()
160 return mxPropSet2State->getPropertyState( PropertyName ); in getPropertyState()
183 void SAL_CALL PropertySetMergerImpl::setPropertyToDefault( const OUString& PropertyName ) throw(Unk… in setPropertyToDefault() argument
185 if( mxPropSet1State.is() && mxPropSet1Info->hasPropertyByName( PropertyName ) ) in setPropertyToDefault()
187 mxPropSet1State->setPropertyToDefault( PropertyName ); in setPropertyToDefault()
193 mxPropSet2State->setPropertyToDefault( PropertyName ); in setPropertyToDefault()