compactnamednodemap.java

来自「随书的代码」· Java 代码 · 共 21 行

JAVA
21
字号
package org.w3c.dom;public interface NamedNodeMap {  // for iterating through the map as a list  public Node item(int index);  public int  getLength();  // For working with particular items in the list  public Node getNamedItem(String name);  public Node setNamedItem(Node arg) throws DOMException;  public Node removeNamedItem(String name)   throws DOMException;  public Node getNamedItemNS(String namespaceURI,    String localName);  public Node setNamedItemNS(Node arg) throws DOMException;  public Node removeNamedItemNS(String namespaceURI,    String localName) throws DOMException;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?