Beispiel #1
0
 public void check(Parse cell, TypeAdapter a) {
   String text = cell.text();
   if (text.equals("")) handleBlankCell(cell, a);
   else if (a == null) ignore(cell);
   else if (text.equals("error")) handleErrorInCell(a, cell);
   else compareCellToResult(a, cell);
 }