@param key @return Property
(String key)
| 534 | * @return Property |
| 535 | */ |
| 536 | public Property getPathVariable(String key) { |
| 537 | if (this.variable == null) { |
| 538 | return null; |
| 539 | } |
| 540 | for (Property curVar : this.variable) { |
| 541 | if (curVar.getKey().equals(key)) { |
| 542 | return curVar; |
| 543 | } |
| 544 | } |
| 545 | return null; |
| 546 | } |
| 547 | |
| 548 | |
| 549 | /** |
no test coverage detected