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

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

?? markup.java

?? 源碼包含生成 PDF 和 HTML 的類庫
?? JAVA
?? 第 1 頁 / 共 2 頁
字號:
/* * $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";

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
91网站黄www| 91亚洲精品一区二区乱码| 亚洲精品成a人| 国产精品久久久久久久久动漫| 久久五月婷婷丁香社区| 欧美精品v日韩精品v韩国精品v| 欧美三级在线播放| 69av一区二区三区| 日韩欧美色综合网站| 精品国产一区二区在线观看| 欧美一区二区三区播放老司机| 欧美日韩免费不卡视频一区二区三区 | 亚洲国产精品v| 中文字幕成人网| 亚洲日韩欧美一区二区在线| 国产精品成人午夜| 亚洲成人av在线电影| 青青草97国产精品免费观看| 久久福利资源站| 国产做a爰片久久毛片| 国产成人夜色高潮福利影视| 91亚洲精品一区二区乱码| 欧美日免费三级在线| 精品国产第一区二区三区观看体验 | 国产亚洲精久久久久久| 国产精品卡一卡二卡三| 亚洲在线观看免费视频| 麻豆91小视频| 91免费版在线看| 欧美一区二区在线视频| 国产精品女同互慰在线看| 亚洲自拍偷拍图区| 国模娜娜一区二区三区| 91国偷自产一区二区开放时间| 欧美一卡二卡在线| 亚洲四区在线观看| 免费观看在线色综合| 99精品视频在线免费观看| 日韩一区二区三区高清免费看看| 国产日韩av一区| 日韩国产在线观看| 99久久99久久综合| 欧美xxxxxxxx| 亚洲第一福利视频在线| 丁香另类激情小说| 欧美一区二区三区四区高清| 中文字幕乱码亚洲精品一区| 日本免费新一区视频| 91啪亚洲精品| 国产欧美日本一区二区三区| 久久国产精品色婷婷| 欧美日韩中文字幕一区二区| 国产精品灌醉下药二区| 精品一区二区国语对白| 欧美三级韩国三级日本一级| 亚洲婷婷国产精品电影人久久| 香蕉加勒比综合久久| 97久久精品人人做人人爽| 久久久国产精品午夜一区ai换脸| 午夜精品爽啪视频| 欧美影视一区二区三区| 日韩一区中文字幕| 国产成人av电影在线| 欧美成人福利视频| 爽好多水快深点欧美视频| 在线一区二区三区做爰视频网站| 日本一区二区三区国色天香| 久久精品国产久精国产| 日韩区在线观看| 亚洲国产一区二区三区| 日本精品一区二区三区高清 | 国产清纯白嫩初高生在线观看91 | 成人一区二区在线观看| 久久久91精品国产一区二区精品| 美女一区二区三区在线观看| 91精品欧美久久久久久动漫 | 亚洲成人免费av| 欧美军同video69gay| 亚洲成人中文在线| 欧美视频自拍偷拍| 亚洲h精品动漫在线观看| 欧美日韩亚洲综合一区二区三区| 亚洲一区免费视频| 欧美日韩视频在线一区二区| 午夜精品成人在线视频| 欧美日韩精品三区| 日本成人超碰在线观看| 久久亚洲精精品中文字幕早川悠里 | 亚洲成人手机在线| 日韩一区二区三区在线视频| 久久91精品国产91久久小草 | 色成年激情久久综合| 亚洲3atv精品一区二区三区| 日韩免费成人网| 国产成人免费在线观看不卡| 1024国产精品| 欧美性受极品xxxx喷水| 日本伊人精品一区二区三区观看方式| 日韩一区二区中文字幕| 国产成人精品综合在线观看| 亚洲欧美日韩国产一区二区三区| 欧美吞精做爰啪啪高潮| 久久不见久久见免费视频7| 中文字幕av资源一区| 欧美综合天天夜夜久久| 老司机精品视频一区二区三区| 国产欧美中文在线| 欧美专区日韩专区| 国产精品综合一区二区三区| 国产精品毛片大码女人| 在线精品国精品国产尤物884a| 免费在线成人网| 亚洲色图制服诱惑| 日韩你懂的在线观看| 99re热视频精品| 国产一区二区三区香蕉| 一区二区三区在线高清| 久久夜色精品国产噜噜av| 精品视频在线看| 成人污视频在线观看| 美腿丝袜亚洲综合| 有码一区二区三区| 日本一区二区在线不卡| 欧美疯狂做受xxxx富婆| 成人avav影音| 国精产品一区一区三区mba视频| 亚洲综合免费观看高清在线观看| 国产色综合一区| 精品粉嫩超白一线天av| 在线观看视频一区| www.成人网.com| 国产一区二区三区精品视频| 日韩高清电影一区| 亚洲欧洲综合另类| 国产精品你懂的在线欣赏| 久久蜜桃一区二区| 欧美大尺度电影在线| 欧美人xxxx| 欧美日韩国产另类一区| 欧美性欧美巨大黑白大战| 99国产欧美久久久精品| 成人免费精品视频| 国产91色综合久久免费分享| 国产一区二区主播在线| 极品少妇一区二区三区精品视频| 五月激情六月综合| 午夜精品一区二区三区电影天堂| 洋洋av久久久久久久一区| 国产精品电影一区二区| 国产精品久久久久影院亚瑟 | 日本成人在线不卡视频| 午夜精品国产更新| 亚洲午夜激情av| 亚洲图片欧美综合| 亚洲成人中文在线| 日产国产高清一区二区三区| 日韩国产精品久久| 久久99精品久久只有精品| 毛片一区二区三区| 极品少妇xxxx精品少妇| 国产真实乱对白精彩久久| 久久99精品一区二区三区三区| 激情欧美日韩一区二区| 国产精品香蕉一区二区三区| 成人一二三区视频| 91九色最新地址| 日韩亚洲欧美在线| 国产亚洲欧美色| 1024成人网| 人禽交欧美网站| 成人午夜又粗又硬又大| 色天使色偷偷av一区二区| 欧美精品 日韩| 久久久久久久国产精品影院| 国产精品久久99| 天天亚洲美女在线视频| 韩国v欧美v日本v亚洲v| 91女人视频在线观看| 欧美狂野另类xxxxoooo| www欧美成人18+| 亚洲精品欧美激情| 久久99精品久久久久久国产越南| 福利一区福利二区| 欧美在线啊v一区| 精品久久久久久久久久久久包黑料| 国产女主播在线一区二区| 亚洲风情在线资源站| 国产精品 日产精品 欧美精品| 91国产免费观看| 久久嫩草精品久久久久| 亚洲午夜激情网站| 福利一区在线观看| 5月丁香婷婷综合| ●精品国产综合乱码久久久久| 日韩激情一二三区| av在线这里只有精品| 日韩欧美在线一区二区三区| 中文字幕一区二区三区视频| 久久精品国产一区二区| 在线免费观看日本欧美|