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

📄 xhtmlwriter.java

📁 一个自然语言处理的Java开源工具包。LingPipe目前已有很丰富的功能
💻 JAVA
📖 第 1 页 / 共 5 页
字号:
     * @param att3 Qualified name of attribute three.     * @param val3 Value of attribute three.     * @throws SAXException If there is an underlying SAX exception.     */    public void blockquote(String att1, String val1,                    String att2, String val2,                    String att3, String val3) throws SAXException {        startSimpleElement(BLOCKQUOTE,att1,val1,att2,val2,att3,val3);    }    /**     * Start an <code>blockquote</code> element with the specified     * attributes and values.     *     * @param att1 Qualified name of attribute one.     * @param val1 Value of attribute one.     * @param att2 Qualified name of attribute two.     * @param val2 Value of attribute two.     * @param att3 Qualified name of attribute three.     * @param val3 Value of attribute three.     * @param att4 Qualified name of attribute four.     * @param val4 Value of attribute four.     * @throws SAXException If there is an underlying SAX exception.     */    public void blockquote(String att1, String val1,                    String att2, String val2,                    String att3, String val3,                    String att4, String val4) throws SAXException {        startSimpleElement(BLOCKQUOTE,att1,val1,att2,val2,att3,val3,att4,val4);    }    /**     * Constant for element <code>body</code>.     */    public static final String BODY = "body";    /**     * Start an <code>body</code> element with no attributes.     *     * @throws SAXException If there is an underlying SAX exception.     */    public void body() throws SAXException {        body(EMPTY_ATTS);    }    /**     * Start an <code>body</code> element with the specified     * attributes.     *     * @param atts Attributes for element.     * @throws SAXException If there is an underlying SAX exception.     */    public void body(Attributes atts) throws SAXException {        startSimpleElement(BODY,atts);    }    /**     * Start an <code>body</code> element with the specified     * attribute and value.     *     * @param att Qualified name of attribute.     * @param val Value of attribute.     * @throws SAXException If there is an underlying SAX exception.     */    public void body(String att, String val) throws SAXException {        startSimpleElement(BODY,att,val);    }    /**     * Start an <code>body</code> element with the specified     * attributes and values.     *     * @param att1 Qualified name of attribute one.     * @param val1 Value of attribute one.     * @param att2 Qualified name of attribute two.     * @param val2 Value of attribute two.     * @throws SAXException If there is an underlying SAX exception.     */    public void body(String att1, String val1,                    String att2, String val2) throws SAXException {        startSimpleElement(BODY,att1,val1,att2,val2);    }    /**     * Start an <code>body</code> element with the specified     * attributes and values.     *     * @param att1 Qualified name of attribute one.     * @param val1 Value of attribute one.     * @param att2 Qualified name of attribute two.     * @param val2 Value of attribute two.     * @param att3 Qualified name of attribute three.     * @param val3 Value of attribute three.     * @throws SAXException If there is an underlying SAX exception.     */    public void body(String att1, String val1,                    String att2, String val2,                    String att3, String val3) throws SAXException {        startSimpleElement(BODY,att1,val1,att2,val2,att3,val3);    }    /**     * Start an <code>body</code> element with the specified     * attributes and values.     *     * @param att1 Qualified name of attribute one.     * @param val1 Value of attribute one.     * @param att2 Qualified name of attribute two.     * @param val2 Value of attribute two.     * @param att3 Qualified name of attribute three.     * @param val3 Value of attribute three.     * @param att4 Qualified name of attribute four.     * @param val4 Value of attribute four.     * @throws SAXException If there is an underlying SAX exception.     */    public void body(String att1, String val1,                    String att2, String val2,                    String att3, String val3,                    String att4, String val4) throws SAXException {        startSimpleElement(BODY,att1,val1,att2,val2,att3,val3,att4,val4);    }    /**     * Constant for element <code>br</code>.     */    public static final String BR = "br";    /**     * Start an <code>br</code> element with no attributes.     *     * @throws SAXException If there is an underlying SAX exception.     */    public void br() throws SAXException {        br(EMPTY_ATTS);    }    /**     * Start an <code>br</code> element with the specified     * attributes.     *     * @param atts Attributes for element.     * @throws SAXException If there is an underlying SAX exception.     */    public void br(Attributes atts) throws SAXException {        startSimpleElement(BR,atts);    }    /**     * Start an <code>br</code> element with the specified     * attribute and value.     *     * @param att Qualified name of attribute.     * @param val Value of attribute.     * @throws SAXException If there is an underlying SAX exception.     */    public void br(String att, String val) throws SAXException {        startSimpleElement(BR,att,val);    }    /**     * Start an <code>br</code> element with the specified     * attributes and values.     *     * @param att1 Qualified name of attribute one.     * @param val1 Value of attribute one.     * @param att2 Qualified name of attribute two.     * @param val2 Value of attribute two.     * @throws SAXException If there is an underlying SAX exception.     */    public void br(String att1, String val1,                    String att2, String val2) throws SAXException {        startSimpleElement(BR,att1,val1,att2,val2);    }    /**     * Start an <code>br</code> element with the specified     * attributes and values.     *     * @param att1 Qualified name of attribute one.     * @param val1 Value of attribute one.     * @param att2 Qualified name of attribute two.     * @param val2 Value of attribute two.     * @param att3 Qualified name of attribute three.     * @param val3 Value of attribute three.     * @throws SAXException If there is an underlying SAX exception.     */    public void br(String att1, String val1,                    String att2, String val2,                    String att3, String val3) throws SAXException {        startSimpleElement(BR,att1,val1,att2,val2,att3,val3);    }    /**     * Start an <code>br</code> element with the specified     * attributes and values.     *     * @param att1 Qualified name of attribute one.     * @param val1 Value of attribute one.     * @param att2 Qualified name of attribute two.     * @param val2 Value of attribute two.     * @param att3 Qualified name of attribute three.     * @param val3 Value of attribute three.     * @param att4 Qualified name of attribute four.     * @param val4 Value of attribute four.     * @throws SAXException If there is an underlying SAX exception.     */    public void br(String att1, String val1,                    String att2, String val2,                    String att3, String val3,                    String att4, String val4) throws SAXException {        startSimpleElement(BR,att1,val1,att2,val2,att3,val3,att4,val4);    }    /**     * Constant for element <code>button</code>.     */    public static final String BUTTON = "button";    /**     * Start an <code>button</code> element with no attributes.     *     * @throws SAXException If there is an underlying SAX exception.     */    public void button() throws SAXException {        button(EMPTY_ATTS);    }    /**     * Start an <code>button</code> element with the specified     * attributes.     *     * @param atts Attributes for element.     * @throws SAXException If there is an underlying SAX exception.     */    public void button(Attributes atts) throws SAXException {        startSimpleElement(BUTTON,atts);    }    /**     * Start an <code>button</code> element with the specified     * attribute and value.     *     * @param att Qualified name of attribute.     * @param val Value of attribute.     * @throws SAXException If there is an underlying SAX exception.     */    public void button(String att, String val) throws SAXException {        startSimpleElement(BUTTON,att,val);    }    /**     * Start an <code>button</code> element with the specified     * attributes and values.     *     * @param att1 Qualified name of attribute one.     * @param val1 Value of attribute one.     * @param att2 Qualified name of attribute two.     * @param val2 Value of attribute two.     * @throws SAXException If there is an underlying SAX exception.     */    public void button(String att1, String val1,                    String att2, String val2) throws SAXException {        startSimpleElement(BUTTON,att1,val1,att2,val2);    }    /**     * Start an <code>button</code> element with the specified     * attributes and values.     *     * @param att1 Qualified name of attribute one.     * @param val1 Value of attribute one.     * @param att2 Qualified name of attribute two.     * @param val2 Value of attribute two.     * @param att3 Qualified name of attribute three.     * @param val3 Value of attribute three.     * @throws SAXException If there is an underlying SAX exception.     */    public void button(String att1, String val1,                    String att2, String val2,                    String att3, String val3) throws SAXException {        startSimpleElement(BUTTON,att1,val1,att2,val2,att3,val3);    }    /**     * Start an <code>button</code> element with the specified     * attributes and values.     *     * @param att1 Qualified name of attribute one.     * @param val1 Value of attribute one.     * @param att2 Qualified name of attribute two.     * @param val2 Value of attribute two.     * @param att3 Qualified name of attribute three.     * @param val3 Value of attribute three.     * @param att4 Qualified name of attribute four.     * @param val4 Value of attribute four.     * @throws SAXException If there is an underlying SAX exception.     */    public void button(String att1, String val1,                    String att2, String val2,                    String att3, String val3,                    String att4, String val4) throws SAXException {        startSimpleElement(BUTTON,att1,val1,att2,val2,att3,val3,att4,val4);    }    /**     * Constant for element <code>caption</code>.     */    public static final String CAPTION = "caption";    /**     * Start an <code>caption</code> element with no attributes.     *     * @throws SAXException If there is an underlying SAX exception.     */    public void caption() throws SAXException {        caption(EMPTY_ATTS);    }    /**     * Start an <code>caption</code> element with the specified     * attributes.     *     * @param atts Attributes for element.     * @throws SAXException If there is an underlying SAX exception.     */    public void caption(Attributes atts) throws SAXException {        startSimpleElement(CAPTION,atts);    }    /**     * Start an <code>caption</code> element with the specified     * attribute and value.     *     * @param att Qualified name of attribute.     * @param val Value of attribute.     * @throws SAXException If there is an underlying SAX exception.     */    public void caption(String att, String val) throws SAXException {        startSimpleElement(CAPTION,att,val);    }    /**     * Start an <code>caption</code> element with the specified     * attributes and values.     *     * @param att1 Qualified name of attribute one.     * @param val1 Value of attribute one.     * @param att2 Qualified name of attribute two.     * @param val2 Value of attribute two.     * @throws SAXException If there is an underlying SAX exception.     */    public void caption(String att1, String val1,                    String att2, String val2) throws SAXException {        startSimpleElement(CAPTION,att1,val1,att2,val2);    }    /**     * Start an <code>caption</code> element with the specified     * attributes and values.     *     * @param att1 Qualified name of attribute one.     * @param val1 Value of attribute one.     * @param att2 Qualified name of attribute two.     * @param val2 Value of attribute two.     * @param att3 Qualified name of attribute three.     * @param val3 Value of attribute three.     * @throws SAXException If there is an underlying SAX exception.     */    public void caption(String att1, String val1,                    String att2, String val2,                    String att3, String val3) throws SAXException {        startSimpleElement(CAPTION,att1,val1,att2,val2,att3,val3);    }    /**     * Start an <code>caption</code> element with the specified     * attributes and values.     *

⌨️ 快捷键说明

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