ro.nextreports.engine.ReleaseInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nextreports-engine Show documentation
Show all versions of nextreports-engine Show documentation
NextReports Engine is a lightweight Java platform development library which
can be used to run NextReports inside your applications.
/* Created by JReleaseInfo AntTask from Open Source Competence Group */
/* Creation date Fri Oct 04 17:32:23 EEST 2013 */
package ro.nextreports.engine;
import java.util.Date;
/**
* This class provides information gathered from the build environment.
*
* @author JReleaseInfo AntTask
*/
public class ReleaseInfo {
/** buildDate (set during build process to 1380897143358L). */
private static Date buildDate = new Date(1380897143358L);
/**
* Get buildDate (set during build process to Fri Oct 04 17:32:23 EEST 2013).
* @return Date buildDate
*/
public static final Date getBuildDate() { return buildDate; }
/** home (set during build process to "www.next-reports.com"). */
private static String home = "www.next-reports.com";
/**
* Get home (set during build process to "www.next-reports.com").
* @return String home
*/
public static final String getHome() { return home; }
/**
* Get buildNumber (set during build process to 0).
* @return int buildNumber
*/
public static final int getBuildNumber() { return 0; }
/** company (set during build process to "NextReports"). */
private static String company = "NextReports";
/**
* Get company (set during build process to "NextReports").
* @return String company
*/
public static final String getCompany() { return company; }
/** project (set during build process to "NextReports"). */
private static String project = "NextReports";
/**
* Get project (set during build process to "NextReports").
* @return String project
*/
public static final String getProject() { return project; }
/** copyright (set during build process to "2008-2013"). */
private static String copyright = "2008-2013";
/**
* Get copyright (set during build process to "2008-2013").
* @return String copyright
*/
public static final String getCopyright() { return copyright; }
/** version (set during build process to "6.2"). */
private static String version = "6.2";
/**
* Get version (set during build process to "6.2").
* @return String version
*/
public static final String getVersion() { return version; }
}