1 7 8 package org.dom4j; 9 10 19 public interface Attribute extends Node { 20 28 QName getQName(); 29 30 38 Namespace getNamespace(); 39 40 49 void setNamespace(Namespace namespace); 50 51 60 String getNamespacePrefix(); 61 62 71 String getNamespaceURI(); 72 73 92 String getQualifiedName(); 93 94 102 String getValue(); 103 104 113 void setValue(String value); 114 115 124 Object getData(); 125 126 135 void setData(Object data); 136 } 137 138 174 | Popular Tags |