Interface IVariable

  • All Known Implementing Classes:
    Variable

    public interface IVariable
    Defines a variable interface.
    • Method Summary

      Modifier and Type Method Description
      String getName()
      Get the variable name.
      Variant getValue()
      Get the variable value.
      void setName​(String value)
      Set the variable name.
      void setValue​(Variant value)
      Set the variable value.
    • Method Detail

      • getName

        String getName()
        Get the variable name.
      • setName

        void setName​(String value)
        Set the variable name.
      • getValue

        Variant getValue()
        Get the variable value.
      • setValue

        void setValue​(Variant value)
        Set the variable value.