version.java

来自「帮助你做出类似XP中的OUTLOOKBAR、垂直菜单等外观。功能强大」· Java 代码 · 共 65 行

JAVA
65
字号
/* Created by JReleaseInfo AntTask from Open Source Competence Group *//* Creation date Wed Nov 01 13:01:55 CET 2006 */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 1162382515494L). */   private static Date buildDate = new Date(1162382515494L);   /**    * Get buildDate (set during build process to Wed Nov 01 13:01:55 CET 2006).    * @return Date buildDate    */   public static final Date getBuildDate() { return buildDate; }   /** buildTimestamp (set during build process to "11/01/2006 01:01 PM"). */   private static String buildTimestamp = new String("11/01/2006 01:01 PM");   /**    * Get buildTimestamp (set during build process to "11/01/2006 01:01 PM").    * @return String buildTimestamp    */   public static final String getBuildTimestamp() { return buildTimestamp; }   /** year (set during build process to "2005-2006"). */   private static String year = new String("2005-2006");   /**    * Get year (set during build process to "2005-2006").    * @return String year    */   public static final String getYear() { return year; }   /** version (set during build process to "6.11"). */   private static String version = new String("6.11");   /**    * Get version (set during build process to "6.11").    * @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; }}

⌨️ 快捷键说明

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