line 4
1 /*package*/ final class ConcreteTable implements Table 2 { 3 private LinkedList rows = new LinkedList(); 4 public Cursor rows() 5 { 6 } 7 } 8 9 line 4