Package lumis.portal.structure
Interface IStructureElementPropertiesAccessor
-
- All Known Subinterfaces:
ILayoutPropertiesAccessor
- All Known Implementing Classes:
GenericStructureElementPropertiesAccessor
public interface IStructureElementPropertiesAccessor
A accessor responsible to manage properties forStructureElement
.- Since:
- 5.6.0
- Version:
- $Revision: 11804 $ $Date: 2010-07-29 10:06:21 -0300 (Thu, 29 Jul 2010) $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getPropertyValue(String propertyName)
Returns the property value for a given property name.void
removeProperty(String propertyName)
Removes a property for a given property name from the local property structure map.void
setPropertyValue(String propertyName, String propertyValue)
Sets on the local property structure map a givenpropertyValue
property value for a givenpropertyName
property name.
-
-
-
Method Detail
-
getPropertyValue
String getPropertyValue(String propertyName)
Returns the property value for a given property name. The property value could be local or inherited.- Parameters:
propertyName
- the property name.- Returns:
- the property value.
- Since:
- 5.6.0
-
setPropertyValue
void setPropertyValue(String propertyName, String propertyValue)
Sets on the local property structure map a givenpropertyValue
property value for a givenpropertyName
property name.- Parameters:
propertyName
- the property namepropertyValue
- the property value- Since:
- 5.6.0
-
removeProperty
void removeProperty(String propertyName)
Removes a property for a given property name from the local property structure map.- Parameters:
propertyName
- the name of the property to be removed.- Since:
- 5.6.0
-
-