Interface IScriptVariable

All Known Implementing Classes:
ScriptVariable

public interface IScriptVariable
represent a variable for Database Scripts
Author:
afroehlich
  • Method Summary

    Modifier and Type
    Method
    Description
    get the description
    get the name
    get the (default) value of the script variable
    boolean
    is the script variable numeric
    void
    overwrite the default value of a script variable for script execution
  • Method Details

    • getName

      String getName()
      get the name
      Returns:
      the variable name
    • isNumeric

      boolean isNumeric()
      is the script variable numeric
      Returns:
      boolean
    • getValue

      String getValue()
      get the (default) value of the script variable
      Returns:
      the value of the script variable
    • getDescription

      String getDescription()
      get the description
      Returns:
      the description of the script variable
    • setValue

      void setValue(String value)
      overwrite the default value of a script variable for script execution
      Parameters:
      value -