(int tableid)
| 186 | } |
| 187 | |
| 188 | public String getPrimaryKey(int tableid) { |
| 189 | // some code goes here |
| 190 | Table table = this.getTableById(tableid); |
| 191 | if(table!=null){ |
| 192 | return table.getPkeyField(); |
| 193 | } |
| 194 | return null; |
| 195 | } |
| 196 | |
| 197 | public Iterator<Integer> tableIdIterator() { |
| 198 | // some code goes here |
no test coverage detected