getCheckedState method

String getCheckedState (int line)

Returns "true" or "false" or "null" (as a String!) if the check button or radio button of line >= 0 is checked, not checked, or not existing.

Implementation

String getCheckedState(int line) {
  return fields[line][IX_CBUT];
}