(int id)
| 204 | } |
| 205 | |
| 206 | public String getTableName(int id) { |
| 207 | // some code goes here |
| 208 | Table table = this.getTableById(id); |
| 209 | if(table!=null){ |
| 210 | return table.getName(); |
| 211 | } |
| 212 | throw new NoSuchElementException(); |
| 213 | } |
| 214 | |
| 215 | /** Delete all tables from the catalog */ |
| 216 | public void clear() { |