Interface IStructureElementPropertiesAccessor

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.lang.String getPropertyValue​(java.lang.String propertyName)
      Returns the property value for a given property name.
      void removeProperty​(java.lang.String propertyName)
      Removes a property for a given property name from the local property structure map.
      void setPropertyValue​(java.lang.String propertyName, java.lang.String propertyValue)
      Sets on the local property structure map a given propertyValue property value for a given propertyName property name.
    • Method Detail

      • getPropertyValue

        java.lang.String getPropertyValue​(java.lang.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​(java.lang.String propertyName,
                              java.lang.String propertyValue)
        Sets on the local property structure map a given propertyValue property value for a given propertyName property name.
        Parameters:
        propertyName - the property name
        propertyValue - the property value
        Since:
        5.6.0
      • removeProperty

        void removeProperty​(java.lang.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