亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? doctype.java

?? openlogic-jdom-1.1-all-src-1.zip 可以用于操作xml文件
?? JAVA
字號:
/*-- $Id: DocType.java,v 1.32 2007/11/10 05:28:58 jhunter Exp $ Copyright (C) 2000-2007 Jason Hunter & Brett McLaughlin. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright    notice, this list of conditions, and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright    notice, this list of conditions, and the disclaimer that follows    these conditions in the documentation and/or other materials    provided with the distribution. 3. The name "JDOM" must not be used to endorse or promote products    derived from this software without prior written permission.  For    written permission, please contact <request_AT_jdom_DOT_org>. 4. Products derived from this software may not be called "JDOM", nor    may "JDOM" appear in their name, without prior written permission    from the JDOM Project Management <request_AT_jdom_DOT_org>. In addition, we request (but do not require) that you include in the end-user documentation provided with the redistribution and/or in the software itself an acknowledgement equivalent to the following:     "This product includes software developed by the      JDOM Project (http://www.jdom.org/)." Alternatively, the acknowledgment may be graphical using the logos available at http://www.jdom.org/images/logos. THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE JDOM AUTHORS OR THE PROJECT CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. This software consists of voluntary contributions made by many individuals on behalf of the JDOM Project and was originally created by Jason Hunter <jhunter_AT_jdom_DOT_org> and Brett McLaughlin <brett_AT_jdom_DOT_org>.  For more information on the JDOM Project, please see <http://www.jdom.org/>. */package org.jdom;/** * An XML DOCTYPE declaration.  Method allow the user to get and set the * root element name, public id, and system id. * * @author Brett McLaughlin * @author Jason Hunter * @version $Revision: 1.32 $, $Date: 2007/11/10 05:28:58 $ */public class DocType extends Content {    private static final String CVS_ID =      "@(#) $RCSfile: DocType.java,v $ $Revision: 1.32 $ $Date: 2007/11/10 05:28:58 $ $Name: jdom_1_1 $";    /** The element being constrained */    protected String elementName;    /** The public ID of the DOCTYPE */    protected String publicID;    /** The system ID of the DOCTYPE */    protected String systemID;    /** The internal subset of the DOCTYPE */    protected String internalSubset;    /**     * Default, no-args constructor for implementations to use if needed.     */    protected DocType() {}    /*     * XXX:     *   We need to take care of entities and notations here.     */    /**     * This will create the <code>DocType</code> with     * the specified element name and a reference to an     * external DTD.     *     * @param elementName <code>String</code> name of     *        element being constrained.     * @param publicID <code>String</code> public ID of     *        referenced DTD     * @param systemID <code>String</code> system ID of     *        referenced DTD     * @throws IllegalDataException if the given system ID is not a legal     *         system literal or the public ID is not a legal public ID.     * @throws IllegalNameException if the given root element name is not a     *         legal XML element name.     */    public DocType(String elementName, String publicID, String systemID) {        setElementName(elementName);        setPublicID(publicID);        setSystemID(systemID);    }    /**     * This will create the <code>DocType</code> with     * the specified element name and reference to an     * external DTD.     *     * @param elementName <code>String</code> name of     *        element being constrained.     * @param systemID <code>String</code> system ID of     *        referenced DTD     * @throws IllegalDataException if the given system ID is not a legal     *         system literal.     * @throws IllegalNameException if the given root element name is not a     *         legal XML element name.     */    public DocType(String elementName, String systemID) {        this(elementName, null, systemID);    }    /**     * This will create the <code>DocType</code> with     * the specified element name     *     * @param elementName <code>String</code> name of     *        element being constrained.     * @throws IllegalNameException if the given root element name is not a     *         legal XML element name.     */    public DocType(String elementName) {        this(elementName, null, null);    }    /**     * This will retrieve the element name being constrained.     *     * @return <code>String</code> - element name for DOCTYPE     */    public String getElementName() {        return elementName;    }    /**     * This will set the root element name declared by this     * DOCTYPE declaration.     *     * @return DocType <code>DocType</code> this DocType object     * @param elementName <code>String</code> name of     *        root element being constrained.     * @throws IllegalNameException if the given root element name is not a     *         legal XML element name.     */    public DocType setElementName(String elementName) {        // This can contain a colon so we use checkXMLName()        // instead of checkElementName()        String reason = Verifier.checkXMLName(elementName);        if (reason != null) {            throw new IllegalNameException(elementName, "DocType", reason);        }        this.elementName = elementName;        return this;    }    /**     * This will retrieve the public ID of an externally     * referenced DTD, or an empty <code>String</code> if     * none is referenced.     *     * @return <code>String</code> - public ID of referenced DTD.     */    public String getPublicID() {        return publicID;    }    /**     * This will set the public ID of an externally     * referenced DTD.     *     * @param publicID id to set     * @return DocType <code>DocType</code> this DocType object     * @throws IllegalDataException if the given public ID is not a legal     *         public ID.     */    public DocType setPublicID(String publicID) {        String reason = Verifier.checkPublicID(publicID);        if (reason != null) {            throw new IllegalDataException(publicID, "DocType", reason);        }        this.publicID = publicID;        return this;    }    /**     * This will retrieve the system ID of an externally     * referenced DTD, or an empty <code>String</code> if     * none is referenced.     *     * @return <code>String</code> - system ID of referenced DTD.     */    public String getSystemID() {        return systemID;    }    /**     * This will set the system ID of an externally     * referenced DTD.     *     * @param systemID id to set     * @return systemID <code>String</code> system ID of     *                  referenced DTD.     * @throws IllegalDataException if the given system ID is not a legal     *         system literal.     */    public DocType setSystemID(String systemID) {        String reason = Verifier.checkSystemLiteral(systemID);        if (reason != null) {            throw new IllegalDataException(systemID, "DocType", reason);        }        this.systemID = systemID;        return this;    }    /**     * Returns the empty string since doctypes don't have an XPath     * 1.0 string value.     * @return the empty string     */    public String getValue() {        return "";  // doctypes don't have an XPath string value    }    /**     * This sets the data for the internal subset.     *     * @param newData data for the internal subset, as a     *        <code>String</code>.     */    public void setInternalSubset(String newData) {        internalSubset = newData;    }    /**     * This returns the data for the internal subset.     *     * @return <code>String</code> - the internal subset     */    public String getInternalSubset() {        return internalSubset;    }    /**     * This returns a <code>String</code> representation of the     * <code>DocType</code>, suitable for debugging.     *     * @return <code>String</code> - information about the     *         <code>DocType</code>     */    public String toString() {        return new StringBuffer()            .append("[DocType: ")            .append(new org.jdom.output.XMLOutputter().outputString(this))            .append("]")            .toString();    }}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
精品日韩欧美在线| 成人午夜在线播放| 91精品综合久久久久久| 午夜精品一区二区三区三上悠亚 | 欧美一区午夜视频在线观看| 亚洲电影在线播放| 9191国产精品| 狠狠狠色丁香婷婷综合激情| 国产欧美一区二区精品性色超碰 | 26uuu精品一区二区在线观看| 国内精品自线一区二区三区视频| 久久蜜桃一区二区| 91小视频在线免费看| 性久久久久久久| 久久综合五月天婷婷伊人| 成人综合在线视频| 亚洲综合小说图片| 亚洲精品在线三区| 91麻豆.com| 九九在线精品视频| 亚洲人午夜精品天堂一二香蕉| 欧美日韩精品一区视频| 国内精品久久久久影院薰衣草 | 亚洲天堂网中文字| 欧美麻豆精品久久久久久| 国产在线精品一区二区三区不卡 | 国产清纯白嫩初高生在线观看91 | 欧美视频一区在线| 极品美女销魂一区二区三区免费| 亚洲欧美在线高清| 日韩一区二区三免费高清| 国产成人精品一区二区三区网站观看| 亚洲精品你懂的| 久久久影视传媒| 欧美午夜电影一区| 国产69精品久久99不卡| 性欧美疯狂xxxxbbbb| 中文字幕免费不卡在线| 欧美日韩不卡一区| 成人福利视频在线看| 蜜臀av性久久久久蜜臀av麻豆 | 国产日产精品一区| 欧美日韩免费一区二区三区| 国产成人亚洲精品狼色在线| 亚洲高清三级视频| 国产精品国产馆在线真实露脸 | 欧美三级电影在线看| 成人深夜在线观看| 久久99精品久久久久婷婷| 亚洲不卡一区二区三区| 一区精品在线播放| 欧美激情一区二区三区蜜桃视频 | 久久网站热最新地址| 欧美伦理电影网| 色吊一区二区三区| 成人91在线观看| 国产精品一二二区| 久久99精品一区二区三区三区| 亚洲电影一区二区| 亚洲一区二区在线播放相泽| 亚洲女人的天堂| 国产精品久久影院| 欧美国产精品中文字幕| 2023国产精品自拍| 日韩精品一区二区三区swag | 一区二区三区成人| 日韩美女视频一区| 综合欧美一区二区三区| 国产精品进线69影院| 国产亚洲福利社区一区| 久久一区二区视频| 26uuu色噜噜精品一区| 日韩欧美你懂的| 欧美一级在线观看| 日韩欧美中文一区| 日韩欧美中文字幕制服| 日韩欧美中文字幕一区| 精品少妇一区二区三区日产乱码 | 日韩免费电影一区| 日韩欧美黄色影院| 久久免费偷拍视频| 日本一区免费视频| 中文字幕日韩欧美一区二区三区| 日韩美女精品在线| 亚洲亚洲精品在线观看| 天天综合网 天天综合色| 日韩精品电影在线观看| 日韩av电影免费观看高清完整版| 日本欧美在线观看| 精品一二三四区| 国产成人综合在线| 99热99精品| 在线看日本不卡| 欧美高清视频一二三区| 欧美xfplay| 中文字幕不卡在线| 亚洲一二三专区| 日韩国产精品久久久久久亚洲| 免费在线一区观看| 国产精品 欧美精品| 91免费版在线看| 678五月天丁香亚洲综合网| 日韩美女视频一区二区在线观看| 2020国产成人综合网| 日韩伦理免费电影| 日本vs亚洲vs韩国一区三区| 黄色日韩网站视频| 一本久久综合亚洲鲁鲁五月天 | 日韩精品亚洲专区| 国产精品亚洲视频| 日本韩国一区二区三区| 精品国产乱码久久久久久图片| 国产精品网站导航| 日本成人在线不卡视频| 高清不卡一区二区在线| 欧美中文字幕不卡| 久久午夜色播影院免费高清| 亚洲精品视频自拍| 黄色日韩三级电影| 精品视频1区2区3区| 久久久午夜精品| 五月天丁香久久| 成人av综合在线| 日韩三区在线观看| 亚洲综合久久久| 丁香桃色午夜亚洲一区二区三区| 欧美日韩专区在线| 国产欧美日韩在线观看| 日韩高清在线不卡| 一本在线高清不卡dvd| 久久一区二区三区国产精品| 午夜激情一区二区| 97久久精品人人爽人人爽蜜臀| 7777精品伊人久久久大香线蕉超级流畅| 国产欧美日韩三级| 日本不卡不码高清免费观看| 色狠狠综合天天综合综合| 欧美激情一区二区三区| 美女任你摸久久| 欧美日韩二区三区| 亚洲乱码中文字幕| 成人永久aaa| 久久久美女毛片| 日本亚洲电影天堂| 欧美三级在线播放| 亚洲蜜臀av乱码久久精品| 成人国产精品免费观看视频| 2020国产精品自拍| 激情综合色综合久久综合| 91精品欧美久久久久久动漫 | 精品美女被调教视频大全网站| 亚洲国产wwwccc36天堂| 色婷婷av一区二区三区大白胸| 中文字幕久久午夜不卡| 国产成人在线视频免费播放| 日韩精品在线看片z| 欧美aaa在线| 日韩欧美一级二级三级| 日韩精品一二区| 欧美一卡2卡3卡4卡| 日本欧美一区二区三区乱码| 欧美日本精品一区二区三区| 久久精品国产成人一区二区三区 | 国产精品你懂的在线欣赏| 国产精品资源网| 久久精品一二三| 国产精品一区免费在线观看| 久久久久久久综合狠狠综合| 国内成人自拍视频| 国产亚洲污的网站| 丰满白嫩尤物一区二区| 国产欧美一二三区| 成人av在线播放网址| 中文字幕一区免费在线观看| www.一区二区| 樱花影视一区二区| 精品视频在线视频| 美女一区二区视频| 久久综合九色综合欧美就去吻 | 免费在线视频一区| www国产成人| 成人av在线资源网| 一区二区三区不卡视频| 欧美精品色一区二区三区| 日韩高清在线电影| 久久久久久电影| 色婷婷一区二区三区四区| 亚洲资源中文字幕| 欧美mv日韩mv国产网站app| 国产精品18久久久久久久久久久久 | 国产日韩亚洲欧美综合| 91一区在线观看| 日韩成人伦理电影在线观看| 日韩亚洲国产中文字幕欧美| 国产成人精品一区二区三区四区| 国产精品福利av| 91麻豆精品国产91久久久使用方法 | 舔着乳尖日韩一区| 久久久精品国产99久久精品芒果| 色综合久久中文综合久久牛|