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

? 歡迎來(lái)到蟲(chóng)蟲(chóng)下載站! | ?? 資源下載 ?? 資源專(zhuān)輯 ?? 關(guān)于我們
? 蟲(chóng)蟲(chóng)下載站

?? markup.java

?? 處理PDF
?? JAVA
?? 第 1 頁(yè) / 共 2 頁(yè)
字號(hào):
/* * $Id: Markup.java 3533 2008-07-07 21:27:13Z Howard_s $ * * 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. * * Contributions by: * Lubos Strapko *  * 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;import java.awt.Color;import java.util.Properties;import java.util.StringTokenizer;/** * A class that contains all the possible tagnames and their attributes. */public class Markup {	// iText specific	/** the key for any tag */	public static final String ITEXT_TAG = "tag";	// HTML tags	/** the markup for the body part of a file */	public static final String HTML_TAG_BODY = "body";	/** The DIV tag. */	public static final String HTML_TAG_DIV = "div";	/** This is a possible HTML-tag. */	public static final String HTML_TAG_LINK = "link";	/** The SPAN tag. */	public static final String HTML_TAG_SPAN = "span";	// HTML attributes	/** the height attribute. */	public static final String HTML_ATTR_HEIGHT = "height";	/** the hyperlink reference attribute. */	public static final String HTML_ATTR_HREF = "href";	/** This is a possible HTML attribute for the LINK tag. */	public static final String HTML_ATTR_REL = "rel";	/** This is used for inline css style information */	public static final String HTML_ATTR_STYLE = "style";	/** This is a possible HTML attribute for the LINK tag. */	public static final String HTML_ATTR_TYPE = "type";	/** This is a possible HTML attribute. */	public static final String HTML_ATTR_STYLESHEET = "stylesheet";	/** the width attribute. */	public static final String HTML_ATTR_WIDTH = "width";	/** attribute for specifying externally defined CSS class */	public static final String HTML_ATTR_CSS_CLASS = "class";	/** The ID attribute. */	public static final String HTML_ATTR_CSS_ID = "id";	// HTML values	/** This is a possible value for the language attribute (SCRIPT tag). */	public static final String HTML_VALUE_JAVASCRIPT = "text/javascript";	/** This is a possible HTML attribute for the LINK tag. */	public static final String HTML_VALUE_CSS = "text/css";	// CSS keys	/** the CSS tag for background color */	public static final String CSS_KEY_BGCOLOR = "background-color";	/** the CSS tag for text color */	public static final String CSS_KEY_COLOR = "color";	/** CSS key that indicate the way something has to be displayed */	public static final String CSS_KEY_DISPLAY = "display";	/** the CSS tag for the font family */	public static final String CSS_KEY_FONTFAMILY = "font-family";	/** the CSS tag for the font size */	public static final String CSS_KEY_FONTSIZE = "font-size";	/** the CSS tag for the font style */	public static final String CSS_KEY_FONTSTYLE = "font-style";	/** the CSS tag for the font weight */	public static final String CSS_KEY_FONTWEIGHT = "font-weight";	/** the CSS tag for text decorations */	public static final String CSS_KEY_LINEHEIGHT = "line-height";	/** the CSS tag for the margin of an object */	public static final String CSS_KEY_MARGIN = "margin";	/** the CSS tag for the margin of an object */	public static final String CSS_KEY_MARGINLEFT = "margin-left";	/** the CSS tag for the margin of an object */	public static final String CSS_KEY_MARGINRIGHT = "margin-right";	/** the CSS tag for the margin of an object */	public static final String CSS_KEY_MARGINTOP = "margin-top";	/** the CSS tag for the margin of an object */	public static final String CSS_KEY_MARGINBOTTOM = "margin-bottom";	/** the CSS tag for the margin of an object */	public static final String CSS_KEY_PADDING = "padding";	/** the CSS tag for the margin of an object */	public static final String CSS_KEY_PADDINGLEFT = "padding-left";	/** the CSS tag for the margin of an object */	public static final String CSS_KEY_PADDINGRIGHT = "padding-right";	/** the CSS tag for the margin of an object */	public static final String CSS_KEY_PADDINGTOP = "padding-top";	/** the CSS tag for the margin of an object */	public static final String CSS_KEY_PADDINGBOTTOM = "padding-bottom";	/** the CSS tag for the margin of an object */	public static final String CSS_KEY_BORDERCOLOR = "border-color";	/** the CSS tag for the margin of an object */	public static final String CSS_KEY_BORDERWIDTH = "border-width";	/** the CSS tag for the margin of an object */	public static final String CSS_KEY_BORDERWIDTHLEFT = "border-left-width";	/** the CSS tag for the margin of an object */	public static final String CSS_KEY_BORDERWIDTHRIGHT = "border-right-width";	/** the CSS tag for the margin of an object */	public static final String CSS_KEY_BORDERWIDTHTOP = "border-top-width";	/** the CSS tag for the margin of an object */	public static final String CSS_KEY_BORDERWIDTHBOTTOM = "border-bottom-width";	/** the CSS tag for adding a page break when the document is printed */	public static final String CSS_KEY_PAGE_BREAK_AFTER = "page-break-after";	/** the CSS tag for adding a page break when the document is printed */	public static final String CSS_KEY_PAGE_BREAK_BEFORE = "page-break-before";	/** the CSS tag for the horizontal alignment of an object */	public static final String CSS_KEY_TEXTALIGN = "text-align";	/** the CSS tag for text decorations */	public static final String CSS_KEY_TEXTDECORATION = "text-decoration";	/** the CSS tag for text decorations */	public static final String CSS_KEY_VERTICALALIGN = "vertical-align";	/** the CSS tag for the visibility of objects */	public static final String CSS_KEY_VISIBILITY = "visibility";	// CSS values	/**	 * value for the CSS tag for adding a page break when the document is	 * printed	 */	public static final String CSS_VALUE_ALWAYS = "always";	/** A possible value for the DISPLAY key */	public static final String CSS_VALUE_BLOCK = "block";	/** a CSS value for text font weight */	public static final String CSS_VALUE_BOLD = "bold";	/** the value if you want to hide objects. */	public static final String CSS_VALUE_HIDDEN = "hidden";	/** A possible value for the DISPLAY key */	public static final String CSS_VALUE_INLINE = "inline";	/** a CSS value for text font style */	public static final String CSS_VALUE_ITALIC = "italic";	/** a CSS value for text decoration */	public static final String CSS_VALUE_LINETHROUGH = "line-through";	/** A possible value for the DISPLAY key */	public static final String CSS_VALUE_LISTITEM = "list-item";	/** a CSS value */	public static final String CSS_VALUE_NONE = "none";	/** a CSS value */	public static final String CSS_VALUE_NORMAL = "normal";	/** a CSS value for text font style */	public static final String CSS_VALUE_OBLIQUE = "oblique";	/** A possible value for the DISPLAY key */	public static final String CSS_VALUE_TABLE = "table";	/** A possible value for the DISPLAY key */	public static final String CSS_VALUE_TABLEROW = "table-row";	/** A possible value for the DISPLAY key */	public static final String CSS_VALUE_TABLECELL = "table-cell";	/** the CSS value for a horizontal alignment of an object */	public static final String CSS_VALUE_TEXTALIGNLEFT = "left";

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久老女人爱爱| 亚洲一区二区三区四区五区中文| 欧美色图一区二区三区| 在线不卡欧美精品一区二区三区| 久久国产欧美日韩精品| 亚洲成精国产精品女| www.日韩在线| 久久激五月天综合精品| 日本不卡免费在线视频| 欧美一级免费观看| 美女被吸乳得到大胸91| 精品国一区二区三区| 在线观看91精品国产麻豆| 欧美喷潮久久久xxxxx| 欧美性猛交xxxx乱大交退制版 | 色av成人天堂桃色av| 不卡一区二区在线| www.爱久久.com| 欧美午夜免费电影| 日本精品视频一区二区| 国产精品亚洲人在线观看| 国产黄色91视频| 国产精品69毛片高清亚洲| 成人午夜在线视频| 丁香亚洲综合激情啪啪综合| 成人午夜大片免费观看| 972aa.com艺术欧美| 欧美日韩中文字幕一区| 69p69国产精品| 欧美videos中文字幕| 99视频在线观看一区三区| caoporn国产精品| 日本精品视频一区二区三区| 91成人国产精品| 欧美嫩在线观看| 久久免费偷拍视频| 国产精品福利一区| 国产精品麻豆网站| 亚洲国产日韩精品| 亚洲国产一区二区三区| 精品一区二区三区视频在线观看 | 欧美三级韩国三级日本一级| 欧美日韩免费一区二区三区 | 国产精品私人影院| 亚洲人妖av一区二区| 偷拍日韩校园综合在线| 久久精品av麻豆的观看方式| 精品一区二区影视| 91在线看国产| 717成人午夜免费福利电影| 国产女人aaa级久久久级| 91国产免费看| 777午夜精品免费视频| 中文字幕欧美区| 亚洲精品视频一区| 狠狠色狠狠色合久久伊人| 成人av免费网站| 欧美日韩的一区二区| 国产精品蜜臀在线观看| 亚洲综合清纯丝袜自拍| 国产尤物一区二区在线 | 色婷婷激情一区二区三区| 欧美一级二级在线观看| 国产免费久久精品| 亚洲午夜羞羞片| 成人国产精品视频| 欧美精品日日鲁夜夜添| 中文字幕中文在线不卡住| 一区2区3区在线看| 九色|91porny| 51精品视频一区二区三区| 国产日韩欧美亚洲| 日韩精品一二区| 99久久精品免费| 精品久久人人做人人爽| 亚洲国产美女搞黄色| 国产精品自拍一区| 日韩午夜在线观看视频| 亚洲三级在线免费观看| 国内久久精品视频| 538在线一区二区精品国产| 最近中文字幕一区二区三区| 国产麻豆精品在线观看| 欧美乱熟臀69xxxxxx| 国产精品第13页| 国产iv一区二区三区| 欧美精品在线观看播放| 亚洲一区日韩精品中文字幕| 国产福利精品导航| 日韩欧美在线观看一区二区三区| 亚洲最大色网站| 国产ts人妖一区二区| 26uuu国产一区二区三区| 日韩高清一级片| 99精品视频一区二区| 久久精品网站免费观看| 久久国产福利国产秒拍| 在线精品观看国产| 国产精品成人在线观看| 国产精品亚洲成人| 精品国产一区二区在线观看| 蜜臀av性久久久久蜜臀aⅴ流畅 | 顶级嫩模精品视频在线看| 国产肉丝袜一区二区| 激情五月播播久久久精品| 欧美日韩一二区| 午夜精品福利久久久| 欧美亚洲综合色| 午夜激情久久久| 欧美无砖砖区免费| 亚洲成a人v欧美综合天堂下载| 色综合久久久久久久| 亚洲欧洲日韩av| 欧美唯美清纯偷拍| 亚洲图片欧美视频| 91精品欧美一区二区三区综合在| 一区二区不卡在线播放 | 国产真实精品久久二三区| 欧美一三区三区四区免费在线看| 亚洲国产视频直播| 日韩一区二区影院| 蜜桃精品在线观看| 国产日韩欧美在线一区| 国产91精品一区二区麻豆网站| 在线观看视频一区二区欧美日韩| 一区二区三区免费观看| 91传媒视频在线播放| 亚洲国产成人av网| 91精品一区二区三区久久久久久 | 亚洲人成亚洲人成在线观看图片 | 麻豆精品在线视频| 欧美电视剧在线看免费| 国产精品一级黄| 欧美国产精品v| 欧美日韩一区二区三区在线看| 亚洲成人动漫在线观看| 3d动漫精品啪啪一区二区竹菊| 久久99精品久久久久婷婷| www国产精品av| 99久久夜色精品国产网站| 亚洲欧洲三级电影| 欧美日韩国产bt| 看电影不卡的网站| 久久精品人人爽人人爽| 日本高清不卡aⅴ免费网站| 亚洲一本大道在线| 久久久久久久综合狠狠综合| 国产成人自拍网| 亚洲欧洲av在线| 欧美性受极品xxxx喷水| 日本麻豆一区二区三区视频| 欧美成人vr18sexvr| 岛国一区二区在线观看| 亚洲一区二区在线免费观看视频| 91精品啪在线观看国产60岁| 国产酒店精品激情| 亚洲精品欧美激情| 337p亚洲精品色噜噜| 国产乱码精品一区二区三区五月婷| 国产精品无码永久免费888| 91 com成人网| 成人精品高清在线| 日本91福利区| 国产精品精品国产色婷婷| 欧美一级高清片在线观看| eeuss影院一区二区三区| 美女一区二区在线观看| 亚洲欧洲另类国产综合| 精品国产一区二区亚洲人成毛片| 99re这里只有精品6| 久久这里只有精品6| 欧美三级中文字| 国产成人免费在线| 亚洲国产日日夜夜| 久久久欧美精品sm网站| 欧美体内she精高潮| 国产高清精品在线| 日本不卡在线视频| 亚洲天堂精品在线观看| www国产亚洲精品久久麻豆| 欧美日韩一区二区三区在线| av一本久道久久综合久久鬼色| 日本免费新一区视频| 国产精品免费久久久久| 亚洲精品一线二线三线| 欧美日韩国产综合久久| 色哟哟国产精品| 国产99久久久久久免费看农村| 免费的成人av| 亚洲成人先锋电影| 国产精品黄色在线观看| 国产免费观看久久| 日韩精品一区二区三区在线| 欧美网站一区二区| 一本大道av伊人久久综合| 国产剧情一区二区三区| 韩国欧美国产1区| 日韩成人伦理电影在线观看| 亚洲精品ww久久久久久p站| 国产精品拍天天在线|