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

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

?? projectinfo.java

?? 水晶 ? ?  報表 ? ? ? 源碼
?? JAVA
字號:
/* ===================================================
 * JCommon : a free general purpose Java class library
 * ===================================================
 *
 * Project Info:  http://www.jfree.org/jcommon/index.html
 * Project Lead:  David Gilbert (david.gilbert@object-refinery.com);
 *
 * (C) Copyright 2000-2003, by Object Refinery Limited and Contributors.
 *
 * This library is free software; you can redistribute it and/or modify it under the terms
 * of the GNU Lesser General Public License as published by the Free Software Foundation;
 * either version 2.1 of the License, or (at your option) 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 Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License along with this
 * library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
 * Boston, MA 02111-1307, USA.
 *
 * ----------------
 * ProjectInfo.java
 * ----------------
 * (C) Copyright 2001-2003, by Object Refinery Limited.
 *
 * Original Author:  David Gilbert (for Object Refinery Limited);
 * Contributor(s):   -;
 *
 * $Id: ProjectInfo.java,v 1.3 2003/06/12 16:54:45 mungady Exp $
 *
 * Changes (since 27-Jun-2002)
 * ---------------------------
 * 27-Jun-2002 : Added logo, updated source header and Javadocs (DG);
 * 08-Oct-2002 : Added set methods for most attributes. Fixed errors reported by Checkstyle (DG);
 *
 */

package org.jfree.ui.about;

import java.awt.Image;
import java.util.Iterator;
import java.util.List;

/**
 * A class for recording the basic information about a free or open source software project.
 *
 * @author David Gilbert
 */
public class ProjectInfo {

    /** The project name. */
    private String name;

    /** The project version. */
    private String version;

    /** The project copyright statement. */
    private String copyright;

    /** Further info about the project (typically a URL for the project's web page). */
    private String info;

    /** An optional project logo. */
    private Image logo;

    /** The name of the licence. */
    private String licenceName;

    /** The licence text. */
    private String licenceText;

    /** A list of contributors. */
    private List contributors;

    /** A list of libraries used by the project. */
    private List libraries;

    /**
     * Constructs an empty project info object.
     */
    public ProjectInfo() {
    }

    /**
     * Constructs a project info object.
     *
     * @param name  the name of the project.
     * @param version  the version.
     * @param info  other info (usually a URL).
     * @param logo  the project logo.
     * @param copyright  a copyright statement.
     * @param licenceName  the name of the licence that applies to the project.
     * @param licenceText  the text of the licence that applies to the project.
     */
    public ProjectInfo(String name,
                       String version,
                       String info,
                       Image logo,
                       String copyright,
                       String licenceName,
                       String licenceText) {

        this.name = name;
        this.version = version;
        this.info = info;
        this.logo = logo;
        this.copyright = copyright;
        this.licenceName = licenceName;
        this.licenceText = licenceText;

    }

    /**
     * Returns the project name.
     *
     * @return the project name.
     */
    public String getName() {
        return this.name;
    }

    /**
     * Sets the project name.
     *
     * @param name  the project name.
     */
    public void setName(String name) {
        this.name = name;
    }

    /**
     * Returns the project version.
     *
     * @return the project version.
     */
    public String getVersion() {
        return this.version;
    }

    /**
     * Sets the project version.
     *
     * @param version  the project version.
     */
    public void setVersion(String version) {
        this.version = version;
    }

    /**
     * Returns other information about the project (typically a URL for the project home page).
     *
     * @return the project info.
     */
    public String getInfo() {
        return this.info;
    }

    /**
     * Sets the project info (typically a URL).
     *
     * @param info  the project info.
     */
    public void setInfo(String info) {
        this.info = info;
    }

    /**
     * Returns the logo.
     *
     * @return the project logo.
     */
    public Image getLogo() {
        return this.logo;
    }

    /**
     * Sets the project logo.
     *
     * @param logo  the project logo.
     */
    public void setLogo(Image logo) {
        this.logo = logo;
    }

    /**
     * Returns the copyright statement.
     *
     * @return the copyright statement.
     */
    public String getCopyright() {
        return this.copyright;
    }

    /**
     * Sets the project copyright statement.
     *
     * @param copyright  the project copyright statement.
     */
    public void setCopyright(String copyright) {
        this.copyright = copyright;
    }

    /**
     * Returns the licence name.
     *
     * @return the licence name.
     */
    public String getLicenceName() {
        return this.licenceName;
    }

    /**
     * Sets the project licence name.
     *
     * @param licenceName  the licence name.
     */
    public void setLicenceName(String licenceName) {
        this.licenceName = licenceName;
    }

    /**
     * Returns the licence text.
     *
     * @return the licence text.
     */
    public String getLicenceText() {
        return this.licenceText;
    }

    /**
     * Sets the project licence text.
     *
     * @param licenceText  the licence text.
     */
    public void setLicenceText(String licenceText) {
        this.licenceText = licenceText;
    }

    /**
     * Returns the list of contributors for the project.
     *
     * @return the list of contributors.
     */
    public List getContributors() {
        return this.contributors;
    }

    /**
     * Sets the list of contributors.
     *
     * @param contributors  the list of contributors.
     */
    public void setContributors(List contributors) {
        this.contributors = contributors;
    }

    /**
     * Returns a list of libraries used by the project.
     *
     * @return the list of libraries.
     */
    public List getLibraries() {
        return this.libraries;
    }

    /**
     * Sets the list of libraries.
     *
     * @param libraries  the list of libraries.
     */
    public void setLibraries(List libraries) {
        this.libraries = libraries;
    }

    /**
     * Returns a string describing the project.
     *
     * @return a string describing the project.
     */
    public String toString() {

        String result = getName() + " version " + getVersion() + ".\n";
        result = result + getCopyright() + ".\n";
        result = result + "\n";
        result = result + "For terms of use, see the licence below.\n";
        result = result + "\n";
        result = result + "FURTHER INFORMATION:";
        result = result + getInfo();
        result = result + "\n";
        result = result + "CONTRIBUTORS:";
        List contributors = getContributors();
        if (contributors != null) {
            Iterator iterator = getContributors().iterator();
            while (iterator.hasNext()) {
                Contributor contributor = (Contributor) iterator.next();
                result = result + contributor.getName() + " (" + contributor.getEmail() + ").";
            }
        }
        else {
            result = result + "None";
        }

        result = result + "\n";
        result = result + "OTHER LIBRARIES USED BY " + getName() + ":";
        List libraries = getLibraries();
        if (libraries != null) {
            Iterator iterator = getLibraries().iterator();
            while (iterator.hasNext()) {
                Library lib = (Library) iterator.next();
                result = result + lib.getName() + " "
                                + lib.getVersion() + " ("
                                + lib.getInfo() + ").";
            }
        }
        else {
            result = result + "None";
        }
        result = result + "\n";
        result = result + getName() + " LICENCE TERMS:";
        result = result + "\n";
        result = result + getLicenceText();

        return result;

    }

}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产精品一区免费在线观看| 4438x亚洲最大成人网| 欧美视频日韩视频在线观看| 日韩免费福利电影在线观看| 亚洲精品中文在线影院| 久久国产尿小便嘘嘘| 精品视频一区二区三区免费| 中文字幕一区二区三区在线观看| 日产精品久久久久久久性色| 欧美在线视频你懂得| 国产精品久久久久久久岛一牛影视| 美女网站一区二区| 欧美日韩一区不卡| 亚洲欧美另类图片小说| youjizz国产精品| 亚洲精品一区二区三区影院| 人人超碰91尤物精品国产| 91激情在线视频| 成人免费小视频| 成人高清免费观看| 久久久精品天堂| 激情综合五月婷婷| 日韩欧美亚洲另类制服综合在线 | 欧美专区亚洲专区| 亚洲蜜臀av乱码久久精品| 国产成人免费av在线| 精品国产免费人成在线观看| 久88久久88久久久| 日韩免费高清视频| 久久99国内精品| 久久久久9999亚洲精品| 国产精品一区二区在线观看不卡 | 国产精品视频免费看| 粗大黑人巨茎大战欧美成人| 欧美韩国日本综合| 成人激情图片网| 亚洲天堂av老司机| 色婷婷狠狠综合| 天堂午夜影视日韩欧美一区二区| 欧美日韩在线播放| 石原莉奈一区二区三区在线观看 | 日本va欧美va精品| ww久久中文字幕| 粉嫩绯色av一区二区在线观看| 国产欧美视频一区二区| 懂色av中文一区二区三区| 国产精品国产三级国产三级人妇| 99热99精品| 亚洲国产精品一区二区www在线| 欧美乱妇23p| 韩国女主播成人在线观看| 国产亚洲一二三区| 91美女片黄在线观看91美女| 亚洲制服丝袜av| 欧美mv日韩mv亚洲| 成人一区在线观看| 偷拍一区二区三区四区| 精品久久久影院| 一本久久a久久精品亚洲| 天堂久久一区二区三区| 国产亚洲一区二区三区四区| 欧亚一区二区三区| 久久99国产精品久久99| 中文字幕一区二区三区四区| 欧美性色黄大片手机版| 久久精品国产在热久久| 综合av第一页| 日韩欧美国产精品一区| 92精品国产成人观看免费| 日韩精品一二三四| 国产欧美日韩不卡免费| 欧美日韩国产一二三| 国产精品99精品久久免费| 亚洲午夜激情网站| 欧美激情一区二区三区在线| 欧美日韩一区三区四区| 高清成人在线观看| 日韩精彩视频在线观看| 中文字幕亚洲一区二区av在线| 69av一区二区三区| 色综合欧美在线视频区| 国产高清精品在线| 秋霞午夜av一区二区三区| 亚洲女人的天堂| 国产片一区二区三区| 精品区一区二区| 91麻豆精品国产无毒不卡在线观看| 成人在线视频首页| 激情久久久久久久久久久久久久久久| 午夜欧美视频在线观看| 中文字幕国产一区| 日韩精品中文字幕一区| 欧美日韩一区二区在线观看视频 | 欧美一级高清片| 91久久精品网| 91亚洲精品久久久蜜桃| 成人看片黄a免费看在线| 精品综合久久久久久8888| 日韩制服丝袜先锋影音| 亚洲乱码中文字幕综合| 国产精品毛片高清在线完整版| 欧美成人三级在线| 欧美一级高清片| 欧美一区二区在线视频| 欧美人成免费网站| 欧美午夜精品一区二区三区| 91免费视频大全| 91色porny在线视频| 成人av资源下载| 99精品视频在线播放观看| 国产一区二区三区四| 激情综合五月天| 国产一区二区三区观看| 国产一区二区精品久久| 国产麻豆精品在线| 国产大陆亚洲精品国产| 国产成人久久精品77777最新版本| 激情六月婷婷综合| 国产大陆亚洲精品国产| 丰满白嫩尤物一区二区| 99热这里都是精品| 在线视频欧美精品| 欧美精品v国产精品v日韩精品| 欧美一区二区三区视频在线| 欧美成人女星排行榜| 国产丝袜美腿一区二区三区| 久久久久久久久久美女| 国产精品热久久久久夜色精品三区| 国产精品美女一区二区三区| 日韩毛片视频在线看| 亚洲一区在线看| 日韩激情视频网站| 国产在线播放一区| 不卡av免费在线观看| 欧美系列一区二区| 日韩西西人体444www| 国产欧美一区二区三区鸳鸯浴 | 欧美一区二区不卡视频| 欧美不卡在线视频| 中文字幕精品三区| 天天色综合成人网| 国产精品一二三四五| 色先锋aa成人| 一区二区三区国产豹纹内裤在线| 一区二区在线观看av| 奇米影视在线99精品| 成人免费高清在线| 欧美日韩一二区| 久久网这里都是精品| 伊人色综合久久天天人手人婷| 日日夜夜一区二区| 99久久免费国产| 日韩一区二区在线看| 国产精品每日更新在线播放网址| 亚洲va欧美va天堂v国产综合| 精品一区二区精品| 在线观看国产一区二区| 欧美精品一区二区三区在线| 日韩毛片在线免费观看| 国产做a爰片久久毛片| 色婷婷av一区二区三区之一色屋| 2022国产精品视频| 亚洲地区一二三色| aaa亚洲精品一二三区| 日韩精品中文字幕一区 | 欧美午夜精品一区二区三区| 久久久久久久久久久久电影| 亚洲福利一区二区| 91片黄在线观看| 国产视频一区二区在线观看| 天天综合网 天天综合色| 99久久久久久| 久久精品夜夜夜夜久久| 麻豆高清免费国产一区| 欧美日韩国产在线观看| 亚洲女性喷水在线观看一区| 国产一区二区不卡老阿姨| 91精品国产综合久久久久久漫画| 一区二区三区中文在线| 国产91综合网| 久久久久久久久免费| 久久狠狠亚洲综合| 欧美一区二区网站| 亚洲成国产人片在线观看| 91影视在线播放| 一区二区三区四区不卡视频| 成人h动漫精品一区二区| 久久综合色鬼综合色| 久久99精品国产麻豆婷婷 | 成人欧美一区二区三区黑人麻豆 | 国产精品小仙女| 精品国产一区久久| 久久99精品久久久| 欧美精品一区二区三区视频| 热久久国产精品| 精品国产乱码久久久久久影片| 老司机免费视频一区二区三区| 日韩一区二区免费视频| 蜜臀av性久久久久av蜜臀妖精 | 一区二区三区四区在线免费观看|