(KeyValue kv)
| 47 | } |
| 48 | |
| 49 | public void addBindArg(KeyValue kv) { |
| 50 | if (bindArgs == null) { |
| 51 | bindArgs = new ArrayList<KeyValue>(); |
| 52 | } |
| 53 | bindArgs.add(kv); |
| 54 | } |
| 55 | |
| 56 | public void addBindArgs(List<KeyValue> bindArgs) { |
| 57 | if (this.bindArgs == null) { |