Sets the content of an element's attribute as a String . The first String specifies the attribute name, while the second specifies the new content. @webref xml:method @webBrief Sets the content of an attribute as a String
(String name, String value)
| 790 | * @webBrief Sets the content of an attribute as a <b>String</b> |
| 791 | */ |
| 792 | public void setString(String name, String value) { |
| 793 | ((Element) node).setAttribute(name, value); |
| 794 | } |
| 795 | |
| 796 | |
| 797 | /** |