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

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

?? annotation.java

?? iText可以制作中文PDF文件的JAVA源程序最新版下載
?? JAVA
?? 第 1 頁 / 共 2 頁
字號:
/* * $Id: Annotation.java,v 1.44 2002/07/09 10:41:33 blowagie Exp $ * $Name:  $ * * Copyright 1999, 2000, 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;import java.net.URL;import java.util.HashMap;import java.util.ArrayList;import java.util.Properties;import java.util.Set;/** * An <CODE>Annotation</CODE> is a little note that can be added to a page * on a document. * * @see		Element * @see		Anchor */public class Annotation implements Element, MarkupAttributes {        // membervariables    /** This is a possible annotation type. */    public static final int TEXT = 0;    /** This is a possible annotation type. */    public static final int URL_NET = 1;    /** This is a possible annotation type. */    public static final int URL_AS_STRING = 2;    /** This is a possible annotation type. */    public static final int FILE_DEST = 3;    /** This is a possible annotation type. */    public static final int FILE_PAGE = 4;    /** This is a possible annotation type. */    public static final int NAMED_DEST = 5;    /** This is a possible annotation type. */    public static final int LAUNCH = 6;    /** This is a possible attribute. */    public static String TITLE = "title";/** This is a possible attribute. */    public static String CONTENT = "content";/** This is a possible attribute. */    public static String URL = "url";/** This is a possible attribute. */    public static String FILE = "file";/** This is a possible attribute. */    public static String DESTINATION = "destination";/** This is a possible attribute. */    public static String PAGE = "page";/** This is a possible attribute. */    public static String NAMED = "named";/** This is a possible attribute. */    public static String APPLICATION = "application";/** This is a possible attribute. */    public static String PARAMETERS = "parameters";/** This is a possible attribute. */    public static String OPERATION = "operation";/** This is a possible attribute. */    public static String DEFAULTDIR = "defaultdir";/** This is a possible attribute. */    public static String LLX = "llx";/** This is a possible attribute. */    public static String LLY = "lly";/** This is a possible attribute. */    public static String URX = "urx";/** This is a possible attribute. */    public static String URY = "ury";    /** This is the type of annotation. */    protected int annotationtype;    /** This is the title of the <CODE>Annotation</CODE>. */    protected HashMap annotationAttributes = new HashMap();/** Contains extra markupAttributes */    protected Properties markupAttributes = null;    /** This is the lower left x-value */    protected float llx = Float.NaN;/** This is the lower left y-value */    protected float lly = Float.NaN;/** This is the upper right x-value */    protected float urx = Float.NaN;/** This is the upper right y-value */    protected float ury = Float.NaN;        // constructors    /** * Constructs an <CODE>Annotation</CODE> with a certain title and some text. */        private Annotation(float llx, float lly, float urx, float ury) {        this.llx = llx;        this.lly = lly;        this.urx = urx;        this.ury = ury;    }    /** * Constructs an <CODE>Annotation</CODE> with a certain title and some text. * * @param	title	the title of the annotation * @param	text	the content of the annotation */        public Annotation(String title, String text) {        annotationtype = TEXT;        annotationAttributes.put(TITLE, title);        annotationAttributes.put(CONTENT, text);    }    /** * Constructs an <CODE>Annotation</CODE> with a certain title and some text. * * @param	title	the title of the annotation * @param	text	the content of the annotation * @param       llx     the lower left x-value * @param       lly     the lower left y-value * @param       urx     the upper right x-value * @param       ury     the upper right y-value */        public Annotation(String title, String text, float llx, float lly, float urx, float ury) {        this(llx, lly, urx, ury);        annotationtype = TEXT;        annotationAttributes.put(TITLE, title);        annotationAttributes.put(CONTENT, text);    }    /** * Constructs an <CODE>Annotation</CODE>. * * @param       llx     the lower left x-value * @param       lly     the lower left y-value * @param       urx     the upper right x-value * @param       ury     the upper right y-value * @param       url     the external reference */        public Annotation(float llx, float lly, float urx, float ury, URL url) {        this(llx, lly, urx, ury);        annotationtype = URL_NET;        annotationAttributes.put(URL, url);    }    /** * Constructs an <CODE>Annotation</CODE>. * * @param       llx     the lower left x-value * @param       lly     the lower left y-value * @param       urx     the upper right x-value * @param       ury     the upper right y-value * @param       url     the external reference */        public Annotation(float llx, float lly, float urx, float ury, String url) {        this(llx, lly, urx, ury);        annotationtype = URL_AS_STRING;        annotationAttributes.put(FILE, url);    }    /** * Constructs an <CODE>Annotation</CODE>. * * @param       llx     the lower left x-value * @param       lly     the lower left y-value * @param       urx     the upper right x-value * @param       ury     the upper right y-value * @param       file    an external PDF file * @param       dest    the destination in this file */        public Annotation(float llx, float lly, float urx, float ury, String file, String dest) {        this(llx, lly, urx, ury);        annotationtype = FILE_DEST;        annotationAttributes.put(FILE, file);        annotationAttributes.put(DESTINATION, dest);    }    /** * Constructs an <CODE>Annotation</CODE>. * * @param       llx     the lower left x-value * @param       lly     the lower left y-value * @param       urx     the upper right x-value * @param       ury     the upper right y-value * @param       file    an external PDF file * @param       page    a page number in this file */        public Annotation(float llx, float lly, float urx, float ury, String file, int page) {        this(llx, lly, urx, ury);        annotationtype = FILE_PAGE;        annotationAttributes.put(FILE, file);        annotationAttributes.put(PAGE, new Integer(page));    }    /** * Constructs an <CODE>Annotation</CODE>. * * @param       llx     the lower left x-value * @param       lly     the lower left y-value * @param       urx     the upper right x-value * @param       ury     the upper right y-value * @param       named   a named destination in this file */        public Annotation(float llx, float lly, float urx, float ury, int named) {        this(llx, lly, urx, ury);        annotationtype = NAMED_DEST;        annotationAttributes.put(NAMED, new Integer(named));    }    /** * Constructs an <CODE>Annotation</CODE>. * * @param       llx     the lower left x-value * @param       lly     the lower left y-value * @param       urx     the upper right x-value * @param       ury     the upper right y-value * @param       application     an external application * @param       parameters      parameters to pass to this application * @param       operation       the operation to pass to this application * @param       defaultdir      the default directory to run this application in */        public Annotation(float llx, float lly, float urx, float ury, String application, String parameters, String operation, String defaultdir) {        this(llx, lly, urx, ury);        annotationtype = LAUNCH;        annotationAttributes.put(APPLICATION, application);        annotationAttributes.put(PARAMETERS, parameters);        annotationAttributes.put(OPERATION, operation);        annotationAttributes.put(DEFAULTDIR, defaultdir);    }    /** * Returns an <CODE>Annotation</CODE> that has been constructed taking in account * the value of some <VAR>attributes</VAR>. * * @param	attributes		Some attributes */        public Annotation(Properties attributes) {        String value = (String)attributes.remove(ElementTags.LLX);        if (value != null) {            llx = Float.valueOf(value + "f").floatValue();        }        value = (String)attributes.remove(ElementTags.LLY);        if (value != null) {

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲一区二区在线观看视频| 韩国女主播成人在线| 午夜精彩视频在线观看不卡| 国产一区91精品张津瑜| 色老汉一区二区三区| 欧美精品一区二区三区蜜臀| 亚洲午夜在线电影| 99久久免费精品高清特色大片| 91精品国产aⅴ一区二区| 亚洲三级电影全部在线观看高清| 极品瑜伽女神91| 欧美在线免费播放| 国产精品大尺度| 国产成人在线电影| 欧美一区二区久久久| 一区二区三区产品免费精品久久75| 激情综合五月天| 欧美色精品天天在线观看视频| 中文字幕中文乱码欧美一区二区| 激情小说欧美图片| 日韩精品一区二区三区蜜臀| 午夜伊人狠狠久久| 欧美吻胸吃奶大尺度电影| 中文字幕一区在线观看视频| 高清国产午夜精品久久久久久| 精品嫩草影院久久| 麻豆高清免费国产一区| 欧美一级片在线| 视频一区视频二区在线观看| 欧美高清精品3d| 午夜精品久久久久影视| 欧美日韩精品一区二区三区四区| 一区二区视频在线| 在线观看精品一区| 亚洲一区在线视频| 国产午夜亚洲精品午夜鲁丝片| 韩国欧美国产1区| 久久久久久亚洲综合影院红桃| 国产激情偷乱视频一区二区三区| 久久久久国产一区二区三区四区| 国产乱码精品一区二区三区忘忧草 | 国内精品伊人久久久久av一坑| 成人av电影观看| 中文字幕一区二区三区不卡| 99精品在线观看视频| 亚洲一区视频在线观看视频| 欧美男人的天堂一二区| 蜜桃视频在线一区| 久久这里只精品最新地址| 国产成人高清视频| 亚洲柠檬福利资源导航| 欧美日韩国产免费一区二区 | 午夜精品成人在线| 欧美videos大乳护士334| 国产精品456露脸| 国产精品不卡一区二区三区| 91论坛在线播放| 日韩综合小视频| 久久一夜天堂av一区二区三区| 成+人+亚洲+综合天堂| 一个色综合网站| 日韩美一区二区三区| 成人免费观看视频| 国产91高潮流白浆在线麻豆| 一区二区三区免费看视频| 91精品国产色综合久久不卡蜜臀| 国产一区二区福利视频| 亚洲色图一区二区三区| 欧美精品欧美精品系列| 国产成人av电影免费在线观看| 亚洲综合一二三区| 欧美精品一区二区三区视频 | 国产一区二区三区免费观看| 中文字幕欧美国产| 欧美日韩精品电影| 国产精品一区二区在线观看不卡 | 久久精品亚洲精品国产欧美| 91久久人澡人人添人人爽欧美| 蜜桃精品视频在线观看| 亚洲精品乱码久久久久久黑人| 日韩一二三四区| 一本一道综合狠狠老| 久久99国产精品久久99果冻传媒| 一区二区三区四区蜜桃| 国产网站一区二区三区| 69p69国产精品| 一本久久精品一区二区| 韩国成人精品a∨在线观看| 亚洲美女在线国产| 中文字幕av一区二区三区高| 日韩一区二区三区在线观看| 日本国产一区二区| 成人av免费在线观看| 国产大陆亚洲精品国产| 蓝色福利精品导航| 午夜欧美在线一二页| 亚洲男人的天堂在线观看| 国产亚洲一二三区| 精品国精品自拍自在线| 这里只有精品电影| 欧美性猛片aaaaaaa做受| youjizz久久| 成人一区二区三区视频| 紧缚捆绑精品一区二区| 久久国产免费看| 日本午夜一区二区| 亚洲bt欧美bt精品| 午夜亚洲国产au精品一区二区| 亚洲综合另类小说| 亚洲国产精品精华液网站| 亚洲欧洲成人自拍| 亚洲欧洲一区二区在线播放| 中文字幕免费在线观看视频一区| 国产午夜精品一区二区三区视频| 精品国产99国产精品| 久久这里只有精品6| 久久精品一区二区三区不卡| 久久精品一区二区| 中文字幕av资源一区| 亚洲天堂久久久久久久| 亚洲色大成网站www久久九九| 自拍偷拍亚洲综合| 亚洲一区二区三区精品在线| 亚洲大片免费看| 日本少妇一区二区| 精品亚洲欧美一区| 国产麻豆精品95视频| 国产精品自拍三区| 成人av电影在线| 欧美日韩亚洲综合在线 欧美亚洲特黄一级| 欧美中文字幕久久| 欧美一区二区三区喷汁尤物| 精品国产一区二区三区四区四| 午夜精品久久久久久久久| 日韩成人dvd| 国产美女久久久久| 97久久人人超碰| 欧美色中文字幕| 精品欧美一区二区久久 | 国产精品888| 99精品在线免费| 在线不卡a资源高清| 精品国产乱码久久久久久久久| 国产蜜臀97一区二区三区| 亚洲视频香蕉人妖| 日本中文一区二区三区| 成人一区二区视频| 欧美日韩和欧美的一区二区| 精品国产乱码久久久久久浪潮| 国产精品成人免费| 日产欧产美韩系列久久99| 成人精品鲁一区一区二区| 欧美视频在线不卡| 久久久久国产精品麻豆ai换脸| 一区二区三区**美女毛片| 久久爱www久久做| 日本韩国一区二区三区视频| 精品va天堂亚洲国产| 一区二区三区.www| 国产毛片精品国产一区二区三区| 欧美午夜一区二区| 亚洲国产成人一区二区三区| 日韩综合在线视频| 色综合色综合色综合色综合色综合| 欧美一级淫片007| 亚洲欧美激情小说另类| 国产伦精品一区二区三区免费迷| 欧美体内she精高潮| 国产精品欧美综合在线| 美女一区二区视频| 欧美三片在线视频观看| 国产精品久久久久久久久动漫| 免费日本视频一区| 欧美午夜在线一二页| 一区二区中文视频| 国产成人一级电影| 日韩精品专区在线影院重磅| 亚洲综合激情另类小说区| www.亚洲激情.com| 欧美精品一区二| 日本少妇一区二区| 欧美日韩国产天堂| 亚洲欧美电影院| 99re热这里只有精品视频| 国产日韩av一区| 精品一二三四区| 欧美v国产在线一区二区三区| 亚洲r级在线视频| 欧美三级日本三级少妇99| 亚洲精品一二三| 91亚洲精华国产精华精华液| 亚洲国产精品v| 不卡一二三区首页| 国产精品毛片久久久久久久| 国产一区三区三区| 国产亚洲美州欧州综合国| 国产一区二区三区在线观看免费视频 | 天天综合色天天| 色综合久久久久| 亚洲一区二区精品久久av|