Get all keys that are used in this statement. @return All keys i.e. the affected database columns.
()
| 111 | * @return All keys i.e. the affected database columns. |
| 112 | */ |
| 113 | public Set<String> getKeys() { |
| 114 | Set<String> keys = new HashSet<String>(); |
| 115 | keys.add(mKey); |
| 116 | |
| 117 | return keys; |
| 118 | } |
| 119 | |
| 120 | public void setKey(String key) { |
| 121 | mKey = key; |