getUserInput method

List<String> getUserInput (int line)

Returns the list of user-entered values for line >= 0. Example 1D: true, Exponential (line with button and a combo box) Example 1D: null, 0.5, -1.0 (line with np button and a text field containing 2 comma-separated values) Example 2D: true, 0.5, -1.0, 0.1, 3.0 (line with a button and two text fields, each containing "0.5, -1.0" and "0.1, 3.0".

Implementation

List<String> getUserInput(int line) {
  return fields[line].sublist(1);
}