Package io.keikai.model
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
-
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
Sets the scenario value for this cell.- Parameters:
value- the value as a string
-