@param key @return Property
(String key)
| 430 | * @return Property |
| 431 | */ |
| 432 | public Property getQueryElement(String key) { |
| 433 | if (this.query == null) { |
| 434 | return null; |
| 435 | } |
| 436 | for (Property curVar : this.query) { |
| 437 | if (curVar.getKey().equals(key)) { |
| 438 | return curVar; |
| 439 | } |
| 440 | } |
| 441 | return null; |
| 442 | |
| 443 | } |
| 444 | |
| 445 | |
| 446 | /** |