Module  java.xml
软件包  org.w3c.dom

Interface Notation

  • All Superinterfaces:
    Node


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

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

    A Notation节点没有任何父节点。

    另见Document Object Model (DOM) Level 3 Core Specification

    • 方法详细信息

      • getPublicId

        String getPublicId​()
        这个符号的公共标识符。 如果未指定公共标识符,则为null
      • getSystemId

        String getSystemId​()
        该符号的系统标识符。 如果系统标识符未指定,则为null 这可能是一个绝对URI。