version.java

来自「一个查找java程序里bug的程序的源代码,该程序本身也是java写的,对提高j」· Java 代码 · 共 115 行

JAVA
115
字号
/* * FindBugs - Find bugs in Java programs * Copyright (C) 2003,2004 University of Maryland *  * 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 */package edu.umd.cs.findbugs;/** * Version number and release date information. */public class Version {	/**	 * Major version number.	 */	public static final int MAJOR = 0;	/**	 * Minor version number.	 */	public static final int MINOR = 8;	/**	 * Patch level.	 */	public static final int PATCHLEVEL = 6;	/**	 * Development version or release candidate?	 */	public static final boolean IS_DEVELOPMENT = false;	/**	 * Release candidate number.	 * "0" indicates that the version is not a release candidate.	 */	public static final int RELEASE_CANDIDATE = 0;	private static final String RELEASE_SUFFIX_WORD =		(RELEASE_CANDIDATE > 0 ? "rc" + RELEASE_CANDIDATE : "dev");	/**	 * Release version string.	 */	public static final String RELEASE =		MAJOR + "." + MINOR + "." + PATCHLEVEL + (IS_DEVELOPMENT ? "-" + RELEASE_SUFFIX_WORD : "");	/**	 * Release date.	 */	public static final String DATE = "December 22, 2004";	/**	 * Version of Eclipse plugin.	 */	public static final String ECLIPSE_UI_VERSION =		"0.0.13" + (IS_DEVELOPMENT ? "." + RELEASE_SUFFIX_WORD: "");	/**	 * FindBugs website.	 */	public static final String WEBSITE = "http://findbugs.sourceforge.net";	/**	 * Downloads website.	 */	public static final String DOWNLOADS_WEBSITE = "http://prdownloads.sourceforge.net/findbugs";	/**	 * Support email.	 */	public static final String SUPPORT_EMAIL = "http://findbugs.sourceforge.net/reportingBugs.html";	public static void main(String[] argv) {		if (argv.length != 1)			usage();		String arg = argv[0];		if (arg.equals("-release"))			System.out.println(RELEASE);		else if (arg.equals("-date"))			System.out.println(DATE);		else if (arg.equals("-props")) {			System.out.println("release.number=" + RELEASE);			System.out.println("release.date=" + DATE);			System.out.println("eclipse.ui.version=" + ECLIPSE_UI_VERSION);			System.out.println("findbugs.website=" + WEBSITE);			System.out.println("findbugs.downloads.website=" + DOWNLOADS_WEBSITE);		} else			usage();	}	private static void usage() {		System.err.println("Usage: " + Version.class.getName() +		        "  (-release|-date|-props)");		System.exit(1);	}}// vim:ts=4

⌨️ 快捷键说明

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