Interface Property

  • All Known Implementing Classes:
    PropertyImpl

    public interface Property
    Property.
    Author:
    Daniel Sagenschneider
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.lang.String getLabel()
      Obtains the display label for the property.
      java.lang.String getName()
      Obtains the name of the property.
      java.lang.String getValue()
      Obtains the value of the property.
      void setValue​(java.lang.String value)
      Changes the value of the property.
    • Method Detail

      • getLabel

        java.lang.String getLabel()
        Obtains the display label for the property.
        Returns:
        Display label for the property.
      • getName

        java.lang.String getName()
        Obtains the name of the property.
        Returns:
        Name of the property.
      • getValue

        java.lang.String getValue()
        Obtains the value of the property.
        Returns:
        Value of the property.
      • setValue

        void setValue​(java.lang.String value)
        Changes the value of the property.
        Parameters:
        value - Value of the property.