Most visited

Recently visited

Added in API level 1

Notation

public interface Notation
implements Node

org.w3c.dom.Notation


该接口表示在DTD中声明的符号。 甲符号或者声明了,通过名称,未解析实体的格式(参见section 4.7 XML 1.0规范的[ XML 1.0 ]),或者被用于处理指令的目标正式宣布(参见section 2.6 XML 1.0规范的[ XML 1.0 ])。 Node继承的nodeName属性设置为表示法的声明名称。

DOM Core不支持编辑Notation节点; 因此它们是只读的。

一个 Notation节点没有任何父节点。

另请参阅 Document Object Model (DOM) Level 3 Core Specification

Summary

Inherited constants

From interface org.w3c.dom.Node

Public methods

abstract String getPublicId()

此记法的公共标识符。

abstract String getSystemId()

这个表示法的系统标识符。

Inherited methods

From interface org.w3c.dom.Node

Public methods

getPublicId

Added in API level 1
String getPublicId ()

此记法的公共标识符。 如果未指定公共标识符,则这是null

Returns
String

getSystemId

Added in API level 1
String getSystemId ()

这个表示法的系统标识符。 如果未指定系统标识符,则这是null 这可能是绝对URI或不是。

Returns
String

Hooray!