Class VarVal

java.lang.Object
org.apache.uima.pear.insd.edit.vars.VarVal

public class VarVal extends Object
Represents a table row in a two column table (of environment variables).
  • Field Details

  • Constructor Details

    • VarVal

      public VarVal(String varName, String varValue)
      Create a VarVal instance.
      Parameters:
      varName - the var name
      varValue - the var value
  • Method Details

    • getFieldNames

      public static String[] getFieldNames()
      Return field names.
      Returns:
      String[] An arry of column field names
    • getVarName

      public String getVarName()
      Returns the variable name.
      Returns:
      the variable name
    • getVarValue

      public String getVarValue()
      Returns the variable value.
      Returns:
      the variable value
    • setVarName

      public void setVarName(String string)
      Sets the variable name.
      Parameters:
      string - the variable name
    • setVarValue

      public void setVarValue(String string)
      Sets the variable value.
      Parameters:
      string - the variable value