📄 xhtmlwriter.java
字号:
* @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 caption(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4) throws SAXException { startSimpleElement(CAPTION,att1,val1,att2,val2,att3,val3,att4,val4); } /** * Constant for element <code>center</code>. */ public static final String CENTER = "center"; /** * Start an <code>center</code> element with no attributes. * * @throws SAXException If there is an underlying SAX exception. */ public void center() throws SAXException { center(EMPTY_ATTS); } /** * Start an <code>center</code> element with the specified * attributes. * * @param atts Attributes for element. * @throws SAXException If there is an underlying SAX exception. */ public void center(Attributes atts) throws SAXException { startSimpleElement(CENTER,atts); } /** * Start an <code>center</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 center(String att, String val) throws SAXException { startSimpleElement(CENTER,att,val); } /** * Start an <code>center</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 center(String att1, String val1, String att2, String val2) throws SAXException { startSimpleElement(CENTER,att1,val1,att2,val2); } /** * Start an <code>center</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 center(String att1, String val1, String att2, String val2, String att3, String val3) throws SAXException { startSimpleElement(CENTER,att1,val1,att2,val2,att3,val3); } /** * Start an <code>center</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 center(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4) throws SAXException { startSimpleElement(CENTER,att1,val1,att2,val2,att3,val3,att4,val4); } /** * Constant for element <code>cite</code>. */ public static final String CITE = "cite"; /** * Start an <code>cite</code> element with no attributes. * * @throws SAXException If there is an underlying SAX exception. */ public void cite() throws SAXException { cite(EMPTY_ATTS); } /** * Start an <code>cite</code> element with the specified * attributes. * * @param atts Attributes for element. * @throws SAXException If there is an underlying SAX exception. */ public void cite(Attributes atts) throws SAXException { startSimpleElement(CITE,atts); } /** * Start an <code>cite</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 cite(String att, String val) throws SAXException { startSimpleElement(CITE,att,val); } /** * Start an <code>cite</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 cite(String att1, String val1, String att2, String val2) throws SAXException { startSimpleElement(CITE,att1,val1,att2,val2); } /** * Start an <code>cite</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 cite(String att1, String val1, String att2, String val2, String att3, String val3) throws SAXException { startSimpleElement(CITE,att1,val1,att2,val2,att3,val3); } /** * Start an <code>cite</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 cite(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4) throws SAXException { startSimpleElement(CITE,att1,val1,att2,val2,att3,val3,att4,val4); } /** * Constant for element <code>code</code>. */ public static final String CODE = "code"; /** * Start an <code>code</code> element with no attributes. * * @throws SAXException If there is an underlying SAX exception. */ public void code() throws SAXException { code(EMPTY_ATTS); } /** * Start an <code>code</code> element with the specified * attributes. * * @param atts Attributes for element. * @throws SAXException If there is an underlying SAX exception. */ public void code(Attributes atts) throws SAXException { startSimpleElement(CODE,atts); } /** * Start an <code>code</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 code(String att, String val) throws SAXException { startSimpleElement(CODE,att,val); } /** * Start an <code>code</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 code(String att1, String val1, String att2, String val2) throws SAXException { startSimpleElement(CODE,att1,val1,att2,val2); } /** * Start an <code>code</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 code(String att1, String val1, String att2, String val2, String att3, String val3) throws SAXException { startSimpleElement(CODE,att1,val1,att2,val2,att3,val3); } /** * Start an <code>code</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 code(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4) throws SAXException { startSimpleElement(CODE,att1,val1,att2,val2,att3,val3,att4,val4); } /** * Constant for element <code>col</code>. */ public static final String COL = "col"; /** * Start an <code>col</code> element with no attributes. * * @throws SAXException If there is an underlying SAX exception. */ public void col() throws SAXException { col(EMPTY_ATTS); } /** * Start an <code>col</code> element with the specified * attributes. * * @param atts Attributes for element. * @throws SAXException If there is an underlying SAX exception. */ public void col(Attributes atts) throws SAXException { startSimpleElement(COL,atts); } /** * Start an <code>col</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 col(String att, String val) throws SAXException { startSimpleElement(COL,att,val); } /** * Start an <code>col</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 col(String att1, String val1, String att2, String val2) throws SAXException { startSimpleElement(COL,att1,val1,att2,val2); } /** * Start an <code>col</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 col(String att1, String val1, String att2, String val2, String att3, String val3) throws SAXException { startSimpleElement(COL,att1,val1,att2,val2,att3,val3); } /** * Start an <code>col</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 col(String att1, String val1,
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -