1 12 13 package org.w3c.dom; 14 15 157 public interface Attr extends Node { 158 162 public String getName(); 163 164 174 public boolean getSpecified(); 175 176 190 public String getValue(); 191 207 public void setValue(String value) 208 throws DOMException ; 209 210 215 public Element getOwnerElement(); 216 217 225 public TypeInfo getSchemaTypeInfo(); 226 227 273 public boolean isId(); 274 275 } 276 | Popular Tags |