Sets the attribute ("insert") and ("name") for the active element of XML object. @param before refers to the name of the junos element the new element should be inserted before @param name the name of the new object that should be inserted before the before param object
(String before, String name)
| 349 | * @param name the name of the new object that should be inserted before the before param object |
| 350 | */ |
| 351 | public void junosInsert(String before, String name) { |
| 352 | activeElement.setAttribute("insert", before); |
| 353 | activeElement.setAttribute("name", name); |
| 354 | } |
| 355 | |
| 356 | /** |
| 357 | * Finds the text value of an element in the XML hierarchy specified by the list. |