📄 qname.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -