@param varPath
(Property varPath)
| 560 | * @param varPath |
| 561 | */ |
| 562 | public void setPathVariable(Property varPath) { |
| 563 | if (this.variable == null) { |
| 564 | this.variable = new PropertyList<Property>(); |
| 565 | } |
| 566 | for (Property curVar : this.variable) { |
| 567 | if (curVar.getKey().equals(varPath.getKey())) { |
| 568 | this.variable.set(this.variable.indexOf(curVar), varPath); |
| 569 | } |
| 570 | } |
| 571 | } |
| 572 | |
| 573 | |
| 574 | /** |