()
| 33 | private List<String> rows; |
| 34 | |
| 35 | public String toString(){ |
| 36 | String outString = ""; |
| 37 | |
| 38 | for (String s : schema.getColumnNames()) { |
| 39 | outString += s + "\t"; |
| 40 | } |
| 41 | outString += "\n"; |
| 42 | |
| 43 | for (String s : rows) { |
| 44 | outString += s + "\n"; |
| 45 | } |
| 46 | return outString; |
| 47 | } |
| 48 | } |
nothing calls this directly
no test coverage detected