documenttype2.java

来自「使用方法: 实例程序的运行: 每个实例下都有本实例的.xml文件或.htm」· Java 代码 · 共 25 行

JAVA
25
字号
/*
 * Copyright (c) 1999 World Wide Web Consortium,
 * (Massachusetts Institute of Technology, Institut National de Recherche
 *  en Informatique et en Automatique, Keio University).
 * All Rights Reserved. http://www.w3.org/Consortium/Legal/
 */

package org.w3c.dom;

/**
 * Two new attributes are added to the <code>DocumentType</code> interface to 
 * provide a way for retrieving the public and system identifiers
 */
public interface DocumentType2 extends DocumentType {
  /**
   * The public identifier of the document type.
   */
  public String             getPublicID();
  /**
   * The system identifier of the document type.
   */
  public String             getSystemID();
}

⌨️ 快捷键说明

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