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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? htmltags.java

?? iText可以制作中文PDF文件的JAVA源程序最新版下載
?? JAVA
字號:
/* * $Id: HtmlTags.java,v 1.36 2002/11/19 08:33:34 blowagie Exp $ * $Name:  $ * * Copyright 2001, 2002 by Bruno Lowagie. * * The contents of this file are subject to the Mozilla Public License Version 1.1 * (the "License"); you may not use this file except in compliance with the License. * You may obtain a copy of the License at http://www.mozilla.org/MPL/ * * Software distributed under the License is distributed on an "AS IS" basis, * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License * for the specific language governing rights and limitations under the License. * * The Original Code is 'iText, a free JAVA-PDF library'. * * The Initial Developer of the Original Code is Bruno Lowagie. Portions created by * the Initial Developer are Copyright (C) 1999, 2000, 2001, 2002 by Bruno Lowagie. * All Rights Reserved. * Co-Developer of the code is Paulo Soares. Portions created by the Co-Developer * are Copyright (C) 2000, 2001, 2002 by Paulo Soares. All Rights Reserved. * * Contributor(s): all the names of the contributors are added in the source code * where applicable. * * Alternatively, the contents of this file may be used under the terms of the * LGPL license (the "GNU LIBRARY GENERAL PUBLIC LICENSE"), in which case the * provisions of LGPL are applicable instead of those above.  If you wish to * allow use of your version of this file only under the terms of the LGPL * License and not to allow others to use your version of this file under * the MPL, indicate your decision by deleting the provisions above and * replace them with the notice and other provisions required by the LGPL. * If you do not delete the provisions above, a recipient may use your version * of this file under either the MPL or the GNU LIBRARY GENERAL PUBLIC LICENSE. * * This library is free software; you can redistribute it and/or modify it * under the terms of the MPL as stated above or under the terms of the GNU * Library General Public License as published by the Free Software Foundation; * either version 2 of the License, or any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Library general Public License for more * details. * * If you didn't download this code from the following link, you should check if * you aren't using an obsolete version: * http://www.lowagie.com/iText/ */package com.lowagie.text.html;/** * A class that contains all the possible tagnames and their attributes. */public class HtmlTags {    /** the root tag. */    public static final String HTML = "html";    /** the head tag */    public static final String HEAD = "head";    /** This is a possible HTML attribute for the HEAD tag. */    public static final String CONTENT = "content";    /** the meta tag */    public static final String META = "meta";    /** attribute of the root tag */    public static final String SUBJECT = "subject";    /** attribute of the root tag */    public static final String KEYWORDS = "keywords";    /** attribute of the root tag */    public static final String AUTHOR = "author";    /** the title tag. */    public static final String TITLE = "title";    /** the script tag. */    public static final String SCRIPT = "script";/** This is a possible HTML attribute for the SCRIPT tag. */    public static final String LANGUAGE = "language";/** This is a possible value for the LANGUAGE attribute. */    public static final String JAVASCRIPT = "JavaScript";/** the body tag. */    public static final String BODY = "body";    /** This is a possible HTML attribute for the BODY tag */    public static final String JAVASCRIPT_ONLOAD = "onLoad";/** This is a possible HTML attribute for the BODY tag */    public static final String JAVASCRIPT_ONUNLOAD = "onUnLoad";/** This is a possible HTML attribute for the BODY tag. */    public static final String TOPMARGIN = "topmargin";    /** This is a possible HTML attribute for the BODY tag. */    public static final String BOTTOMMARGIN = "bottommargin";    /** This is a possible HTML attribute for the BODY tag. */    public static final String LEFTMARGIN = "leftmargin";    /** This is a possible HTML attribute for the BODY tag. */    public static final String RIGHTMARGIN = "rightmargin";        // Phrases, Anchors, Lists and Paragraphs    /** the chunk tag */    public static final String CHUNK = "font";    /** the phrase tag */    public static final String CODE = "code";    /** the phrase tag */    public static final String VAR = "var";    /** the anchor tag */    public static final String ANCHOR = "a";    /** the list tag */    public static final String ORDEREDLIST = "ol";    /** the list tag */    public static final String UNORDEREDLIST = "ul";    /** the listitem tag */    public static final String LISTITEM = "li";    /** the paragraph tag */    public static final String PARAGRAPH = "p";    /** attribute of anchor tag */    public static final String NAME = "name";    /** attribute of anchor tag */    public static final String REFERENCE = "href";    /** attribute of anchor tag */    public static final String[] H = new String[6];    static {        H[0] = "h1";        H[1] = "h2";        H[2] = "h3";        H[3] = "h4";        H[4] = "h5";        H[5] = "h6";    }        // Chunks    /** attribute of the chunk tag */    public static final String FONT = "face";    /** attribute of the chunk tag */    public static final String SIZE = "point-size";    /** attribute of the chunk/table/cell tag */    public static final String COLOR = "color";    /** some phrase tag */    public static final String EM = "em";    /** some phrase tag */    public static final String I = "i";    /** some phrase tag */    public static final String STRONG = "strong";    /** some phrase tag */    public static final String B = "b";    /** some phrase tag */    public static final String S = "s";    /** some phrase tag */    public static final String U = "u";    /** some phrase tag */    public static final String SUB = "sub";    /** some phrase tag */    public static final String SUP = "sup";    /** the possible value of a tag */    public static final String HORIZONTALRULE = "hr";        // tables/cells    /** the table tag */    public static final String TABLE = "table";    /** the cell tag */    public static final String ROW = "tr";    /** the cell tag */    public static final String CELL = "td";    /** attribute of the cell tag */    public static final String HEADERCELL = "th";    /** attribute of the table tag */    public static final String COLUMNS = "cols";    /** attribute of the table tag */    public static final String CELLPADDING = "cellpadding";    /** attribute of the table tag */    public static final String CELLSPACING = "cellspacing";    /** attribute of the cell tag */    public static final String COLSPAN = "colspan";    /** attribute of the cell tag */    public static final String ROWSPAN = "rowspan";    /** attribute of the cell tag */    public static final String NOWRAP = "nowrap";    /** attribute of the table/cell tag */    public static final String BORDERWIDTH = "border";    /** attribute of the table/cell tag */    public static final String WIDTH = "width";    /** attribute of the table/cell tag */    public static final String BACKGROUNDCOLOR = "bgcolor";    /** attribute of the table/cell tag */    public static final String BORDERCOLOR = "bordercolor";    /** attribute of paragraph/image/table tag */    public static final String ALIGN = "align";    /** attribute of chapter/section/paragraph/table/cell tag */    public static final String LEFT = "left";    /** attribute of chapter/section/paragraph/table/cell tag */    public static final String RIGHT = "right";    /** attribute of the cell tag */    public static final String HORIZONTALALIGN = "align";    /** attribute of the cell tag */    public static final String VERTICALALIGN = "valign";    /** attribute of the table/cell tag */    public static final String TOP = "top";    /** attribute of the table/cell tag */    public static final String BOTTOM = "bottom";        // Misc    /** the image tag */    public static final String IMAGE = "img";    /** attribute of the image tag */    public static final String URL = "src";    /** attribute of the image tag */    public static final String ALT = "alt";    /** attribute of the image tag */    public static final String PLAINWIDTH = "width";    /** attribute of the image tag */    public static final String PLAINHEIGHT = "height";    /** the newpage tag */    public static final String NEWLINE = "br";        // alignment attribute values    /** the possible value of an alignment attribute */    public static final String ALIGN_LEFT = "Left";    /** the possible value of an alignment attribute */    public static final String ALIGN_CENTER = "Center";    /** the possible value of an alignment attribute */    public static final String ALIGN_RIGHT = "Right";    /** the possible value of an alignment attribute */    public static final String ALIGN_JUSTIFIED = "Justify";    /** the possible value of an alignment attribute */    public static final String ALIGN_TOP = "Top";    /** the possible value of an alignment attribute */    public static final String ALIGN_MIDDLE = "Middle";    /** the possible value of an alignment attribute */    public static final String ALIGN_BOTTOM = "Bottom";    /** the possible value of an alignment attribute */    public static final String ALIGN_BASELINE = "Baseline";    /** the possible value of an alignment attribute */    public static final String DEFAULT = "Default";}

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
乱中年女人伦av一区二区| 欧美日韩一区成人| 欧美视频中文一区二区三区在线观看| 欧美裸体一区二区三区| 久久久久国产精品人| 日韩精品视频网| 99精品热视频| 中文字幕av一区二区三区免费看| 婷婷开心激情综合| 91一区一区三区| 国产精品久久久久9999吃药| 日本不卡123| 在线一区二区三区四区| 中文字幕一区二区三区不卡| 久久se精品一区精品二区| 欧美精品第一页| 亚洲午夜久久久久久久久久久| 成人激情综合网站| 国产日本欧美一区二区| 黄色日韩网站视频| 日韩欧美第一区| 日韩精彩视频在线观看| 欧美日韩一级视频| 亚洲一区二区三区四区中文字幕| 成人h动漫精品| 中文字幕在线视频一区| 成人美女视频在线看| 欧美韩国日本一区| 顶级嫩模精品视频在线看| 久久久国产精品麻豆| 国产麻豆精品一区二区| 久久精品欧美一区二区三区麻豆| 久久精品国产亚洲a| 日韩一区二区三区视频在线观看| 日本美女一区二区三区视频| 日韩一区二区在线观看视频| 美美哒免费高清在线观看视频一区二区| 欧美丝袜第三区| 天天操天天综合网| 日韩欧美一区在线观看| 久久66热偷产精品| 精品国产99国产精品| 国产一区91精品张津瑜| 日本一区二区免费在线观看视频| 国产91清纯白嫩初高中在线观看| 久久久国产综合精品女国产盗摄| 国产91露脸合集magnet| 亚洲精品视频在线看| 欧美日韩三级在线| 久久精品国产在热久久| 国产欧美一区二区精品性| av一区二区三区四区| 亚洲精品第1页| 3751色影院一区二区三区| 国产麻豆精品95视频| 亚洲欧美一区二区三区孕妇| 精品1区2区3区| 国产美女在线精品| 亚洲精品免费电影| 日韩欧美一级精品久久| 成人在线一区二区三区| 亚洲国产中文字幕| 精品国产1区2区3区| 成人午夜大片免费观看| 午夜精品影院在线观看| 亚洲精品一线二线三线无人区| jiyouzz国产精品久久| 亚洲国产精品天堂| 久久久久久久av麻豆果冻| 99久久精品国产一区| 麻豆成人免费电影| 综合色天天鬼久久鬼色| 日韩美一区二区三区| 成人午夜激情在线| 久久精品72免费观看| 成人免费在线视频| 精品国产一区二区三区四区四| 色综合一个色综合| 极品少妇一区二区三区精品视频| 一区二区三区在线观看欧美| 欧美大白屁股肥臀xxxxxx| 色综合久久久久综合| 国精品**一区二区三区在线蜜桃| 亚洲精品综合在线| 中文字幕欧美激情一区| 日韩欧美第一区| 欧美日韩精品免费| www.日韩大片| 国产精一品亚洲二区在线视频| 亚洲成av人片在线| 一区二区三区精品久久久| 久久精品亚洲精品国产欧美kt∨| 欧美日韩国产免费| 91社区在线播放| 成人激情电影免费在线观看| 捆绑调教美女网站视频一区| 亚洲第一精品在线| 亚洲精品高清在线| 亚洲欧美色一区| 中文字幕在线一区| 国产精品网友自拍| 中文字幕欧美激情| 国产三级一区二区| 国产亚洲精品精华液| 久久久综合九色合综国产精品| 欧美一级片在线观看| 欧美日韩一区 二区 三区 久久精品| 99久久99久久精品国产片果冻| 国产凹凸在线观看一区二区| 免费成人在线观看视频| 蜜桃视频一区二区三区在线观看| 视频一区中文字幕国产| 日本欧洲一区二区| 日av在线不卡| 久久超碰97人人做人人爱| 日本不卡视频一二三区| 日韩av网站免费在线| 日韩av不卡一区二区| 免费成人av在线播放| 极品销魂美女一区二区三区| 激情久久久久久久久久久久久久久久| 九九在线精品视频| 国产乱码精品一区二区三| 懂色av一区二区在线播放| av电影在线观看不卡| www.日韩精品| 欧美三级电影网站| 日韩一级大片在线观看| 欧美精品一区二区三区很污很色的| 久久一留热品黄| 国产精品美女久久久久久久| 亚洲精品乱码久久久久| 午夜影院在线观看欧美| 久久福利视频一区二区| 国产成人精品免费网站| voyeur盗摄精品| 日本丰满少妇一区二区三区| 欧美日韩精品免费观看视频| 精品少妇一区二区三区在线播放| 久久精品这里都是精品| 一区二区三区精品| 久久成人免费电影| 99久久婷婷国产| 日韩一区二区免费高清| 国产蜜臀av在线一区二区三区| 亚洲人xxxx| 九九久久精品视频| 色综合久久综合网| 欧美videos中文字幕| 亚洲少妇中出一区| 激情文学综合插| 欧洲精品视频在线观看| 26uuu国产在线精品一区二区| 中文字幕日韩精品一区| 日韩av在线发布| 91在线一区二区三区| 日韩免费一区二区| 日韩伦理免费电影| 韩国视频一区二区| 欧美日韩第一区日日骚| 国产女同互慰高潮91漫画| 五月婷婷另类国产| 丁香桃色午夜亚洲一区二区三区| 欧美久久一二三四区| 中文字幕高清一区| 蜜桃av一区二区| 在线精品视频小说1| 久久免费电影网| 日本亚洲最大的色成网站www| 丁香婷婷深情五月亚洲| 精品粉嫩aⅴ一区二区三区四区| 亚洲最大成人综合| 成人午夜视频网站| 久久综合九色综合97_久久久| 亚洲国产精品久久人人爱蜜臀 | 久久久99精品免费观看| 日韩成人午夜精品| 欧美午夜不卡在线观看免费| 成人免费一区二区三区视频 | 日本一二三四高清不卡| 麻豆成人免费电影| 欧美日韩国产一二三| 自拍偷拍亚洲欧美日韩| 国产成人亚洲综合色影视 | 91福利在线观看| 中文字幕第一区第二区| 国产精品亚洲视频| 精品国偷自产国产一区| 美国一区二区三区在线播放| 884aa四虎影成人精品一区| 亚洲免费观看高清完整版在线| 国产精品伊人色| 久久人人97超碰com| 国产一区二区三区免费| 久久午夜老司机| 国内一区二区在线| 亚洲精品一区二区三区福利| 久88久久88久久久| 久久日一线二线三线suv| 精东粉嫩av免费一区二区三区|