1 12 13 package com.sun.org.apache.xerces.internal.dom3.as; 14 15 import org.w3c.dom.DOMException ; 16 17 32 public interface ASNamedObjectMap { 33 38 public int getLength(); 39 40 48 public ASObject getNamedItem(String name); 49 50 61 public ASObject getNamedItemNS(String namespaceURI, 62 String localName); 63 64 74 public ASObject item(int index); 75 76 87 public ASObject removeNamedItem(String name) 88 throws DOMException ; 89 90 104 public ASObject removeNamedItemNS(String namespaceURI, 105 String localName) 106 throws DOMException ; 107 108 123 public ASObject setNamedItem(ASObject newASObject) 124 throws DOMException ; 125 126 146 public ASObject setNamedItemNS(ASObject newASObject) 147 throws DOMException ; 148 149 } 150 | Popular Tags |