jcommonxmlinfo.java

来自「JfreeChart 常用图表例子」· Java 代码 · 共 95 行

JAVA
95
字号
/* ======================================================================== * JCommon : a free general purpose class library for the Java(tm) platform * ======================================================================== * * (C) Copyright 2000-2005, by Object Refinery Limited and Contributors. * * Project Info:  http://www.jfree.org/jcommon/index.html * * 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. * * [Java is a trademark or registered trademark of Sun Microsystems, Inc. * in the United States and other countries.] * * ------------ * JCommonXMLInfo.java * ------------ * (C) Copyright 2005, by Object Refinery Limited. * * Original Author:  David Gilbert (for Object Refinery Limited); * Contributor(s):   -; * * $Id: JCommonXMLInfo.java,v 1.3 2005/06/01 14:12:31 taqua Exp $ * * Changes * ------- * 22-Feb-2005 : Initial version. * 03-Mar-2005 : Updated copyright. * */package org.jfree.xml;import java.util.Arrays;import org.jfree.JCommonInfo;import org.jfree.ui.about.Contributor;import org.jfree.ui.about.ProjectInfo;/** * The info implementation for the XML classes of JCommon. * * @author Thomas Morgner */public class JCommonXMLInfo extends ProjectInfo {    /**     * The info singleton.     */    private static JCommonXMLInfo singleton;    /**     * Returns the single instance of this class.     *     * @return The single instance of information about the JCommon library.     */    public static synchronized JCommonXMLInfo getInstance() {        if (singleton == null) {            singleton = new JCommonXMLInfo();        }        return singleton;    }    /**     * Constructs an empty project info object.     */    private JCommonXMLInfo() {        final JCommonInfo info = JCommonInfo.getInstance();        setName("JCommon-XML");        setVersion(info.getVersion());        setInfo(info.getInfo());        setCopyright(info.getCopyright());        setLicenceName(info.getLicenceName());        setLicenceText(info.getLicenceText());        setContributors(Arrays.asList(new Contributor[]{            new Contributor("David Gilbert", "david.gilbert@object-refinery.com"),            new Contributor("Thomas Morgner", "taqua@users.sourceforge.net"),            new Contributor("Peter Becker", "-"),        }));        addDependency(info);    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?