Class ExecuteScriptResult

java.lang.Object
de.elo.ix.client.ExecuteScriptResult
All Implemented Interfaces:
Serializable

public class ExecuteScriptResult extends Object implements Serializable
The function executeScript returns an object of this class to provide returned information or error information.
See Also:
  • Field Details

    • returnedString

      protected String returnedString
      Return value as string.
    • errorMessage

      protected String errorMessage
      Error message.
    • errorLine

      protected int errorLine
      Line where the error occured.
    • errorColumn

      protected int errorColumn
      Column where the error occured.
  • Constructor Details

    • ExecuteScriptResult

      public ExecuteScriptResult()
    • ExecuteScriptResult

      public ExecuteScriptResult(ExecuteScriptResult rhs)
  • Method Details

    • getReturnedString

      public String getReturnedString()
    • setReturnedString

      public void setReturnedString(String returnedString)
    • getErrorMessage

      public String getErrorMessage()
    • setErrorMessage

      public void setErrorMessage(String errorMessage)
    • getErrorLine

      public int getErrorLine()
    • setErrorLine

      public void setErrorLine(int errorLine)
    • getErrorColumn

      public int getErrorColumn()
    • setErrorColumn

      public void setErrorColumn(int errorColumn)
    • toString

      public String toString()
      Overrides:
      toString in class Object