Version.java :  » Swing-Library » l2fprod-common » com » l2fprod » common » Java Open Source

Java Open Source » Swing Library » l2fprod common 
l2fprod common » com » l2fprod » common » Version.java
/* Created by JReleaseInfo AntTask from Open Source Competence Group */
/* Creation date Sat Mar 17 15:13:34 CET 2007 */
package com.l2fprod.common;

import java.util.Date;

/**
 * This class provides information gathered from the build environment.
 * 
 * @author JReleaseInfo AntTask
 */
public class Version {


   /** buildDate (set during build process to 1174140814898L). */
   private static Date buildDate = new Date(1174140814898L);

   /**
    * Get buildDate (set during build process to Sat Mar 17 15:13:34 CET 2007).
    * @return Date buildDate
    */
   public static final Date getBuildDate() { return buildDate; }


   /** buildTimestamp (set during build process to "03/17/2007 03:13 PM"). */
   private static String buildTimestamp = new String("03/17/2007 03:13 PM");

   /**
    * Get buildTimestamp (set during build process to "03/17/2007 03:13 PM").
    * @return String buildTimestamp
    */
   public static final String getBuildTimestamp() { return buildTimestamp; }


   /** year (set during build process to "2005-2007"). */
   private static String year = new String("2005-2007");

   /**
    * Get year (set during build process to "2005-2007").
    * @return String year
    */
   public static final String getYear() { return year; }


   /** version (set during build process to "7.3"). */
   private static String version = new String("7.3");

   /**
    * Get version (set during build process to "7.3").
    * @return String version
    */
   public static final String getVersion() { return version; }


   /** project (set during build process to "l2fprod-common"). */
   private static String project = new String("l2fprod-common");

   /**
    * Get project (set during build process to "l2fprod-common").
    * @return String project
    */
   public static final String getProject() { return project; }

}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.