newData static method

Data newData(
  1. Sheet sheet,
  2. int row,
  3. int col
)

returns the newData object when called from Sheet Class

Implementation

static Data newData(Sheet sheet, int row, int col) {
  return Data._(sheet, row, col);
}