Interface SScenarioInputCell

All Known Implementing Classes:
ScenarioInputCellImpl

public interface SScenarioInputCell
Represents a single input cell within a scenario. Each input cell has a position (row, col) and a value to be applied when the scenario is shown.
Since:
7.0.0
  • Method Summary

    Modifier and Type
    Method
    Description
    int
    Returns the column index (0-based) of this input cell.
    int
    Returns the row index (0-based) of this input cell.
    Returns the scenario value for this cell.
    void
    Sets the scenario value for this cell.
  • Method Details

    • getRow

      int getRow()
      Returns the row index (0-based) of this input cell.
      Returns:
      the row index
    • getCol

      int getCol()
      Returns the column index (0-based) of this input cell.
      Returns:
      the column index
    • getValue

      String getValue()
      Returns the scenario value for this cell.
      Returns:
      the value as a string
    • setValue

      void setValue(String value)
      Sets the scenario value for this cell.
      Parameters:
      value - the value as a string