qname.java
来自「Java的面向对象数据库系统的源代码」· Java 代码 · 共 50 行
JAVA
50 行
package org.dom4j;/** * $Id: $ */public interface QName { /** @return the local name */ String getName(); /** @return the qualified name in the format <code>prefix:localName</code> */ String getQualifiedName(); /** @return the namespace of this QName */ Namespace getNamespace(); /** @return the namespace URI of this QName */ String getNamespacePrefix(); /** @return the namespace URI of this QName */ String getNamespaceURI(); /** @return the hash code based on the qualified name and the URI of the * namespace. */ int hashCode(); boolean equals(Object object); String toString(); /** @return the factory that should be used for Elements of this QName * @deprecated Use getNodeFactory() instead */ DocumentFactory getDocumentFactory(); NodeFactory getNodeFactory(); /** * @deprecated Use setNodeFactory(NodeFactory) instead */ void setDocumentFactory(DocumentFactory documentFactory); void setNodeFactory(NodeFactory nodeFactory);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?