⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dtdexternalid.java

📁 XML的DTD的解析、对XML文件作用的JAVA源代码。
💻 JAVA
字号:
package com.wutka.dtd;import java.io.*;/** Represents an external ID in an entity declaration * * @author Mark Wutka * @version $Revision: 1.16 $ $Date: 2002/07/19 01:20:11 $ by $Author: wutka $ */public abstract class DTDExternalID implements DTDOutput{    public String system;    public DTDExternalID()    {    }/** Writes out a declaration for this external ID */    public abstract void write(PrintWriter out)        throws IOException;        public boolean equals(Object ob)    {        if (ob == this) return true;        if (!(ob instanceof DTDExternalID)) return false;        DTDExternalID other = (DTDExternalID) ob;        if (system == null)        {            if (other.system != null) return false;        }        else        {            if (!system.equals(other.system)) return false;        }        return true;    }/** Sets the system ID */    public void setSystem(String aSystem)    {        system = aSystem;    }/** Retrieves the system ID */    public String getSystem()    {        return system;    }}

⌨️ 快捷键说明

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