国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 學(xué)院 > 開(kāi)發(fā)設(shè)計(jì) > 正文

修改Eclipse注釋里的${Date}變量格式

2019-11-11 03:05:55
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友

http://blog.csdn.net/tenor/article/details/5666195

http://blog.csdn.net/shuchangwen/article/details/42917525

http://blog.sina.com.cn/s/blog_4cef5c7b01017iva.html

http://blog.csdn.net/zollty/article/details/46459621

自從Eclipse升級(jí)到3.2版本以后,其代碼模板的當(dāng)前日期變量{$Date}的格式就不再符合國(guó)人習(xí)慣。在3.2版本中,日期格式為“2007-5-10 上午06:58:10”格式;在3.3版本中,日期格式則為“2007 五月 10 17:20:02”格式。我還是習(xí)慣采用“yyyy/MM/dd HH:mm:ss”格式,但無(wú)論怎么修改Windows系統(tǒng)的區(qū)域設(shè)置,Eclipse的Date格式還是沒(méi)有變化。

Eclipse 的Date變量在GlobalTemplateVariables類(lèi)中定義,如果要修改日期格式,則需要修改GlobalTemplateVariables類(lèi)。這個(gè)類(lèi)在Eclipse插件目錄org.eclipse.text_3.3.0.v20070503-0800.jar(3.3.0 M7版本)文件的org.eclipse.jface.text.templates包中,我的辦法是:

1、在eclipse的源代碼中修改org.eclipse.text項(xiàng)目的GlobalTemplateVariables類(lèi)。

日期格式修改為:

 

java 代碼 PRotected String resolve(TemplateContext context) ...{          // return DateFormat.getDateInstance().format(new java.util.Date());          // Modified by yawolf@Gmail.com          final SimpleDateFormat df = new SimpleDateFormat("yyyy/MM/dd");          return df.format(new java.util.Date());      }  

 

 

 時(shí)間格式修改為:

 

java 代碼 /**  * {@inheritDoc}  */  protected String resolve(TemplateContext context) ...{      // return DateFormat.getTimeInstance().format(new java.util.Date());      // Modified by yawolf@gmail.com      final SimpleDateFormat ldf = new SimpleDateFormat("HH:mm:ss");      return ldf.format(new java.util.Date());  }  

 

2、將修改過(guò)的類(lèi)編譯,然后再打包成org.eclipse.text_3.3.0.v20070503-0800.jar文件,并放進(jìn)Eclipse插件目錄。

3、重啟Eclipse系統(tǒng),即可使用新的&{Date}及%{Time}格式。

以下是我的文件頭注釋模板:

 

java 代碼 /**  * @(#)${file_name} 1.0.0 ${date} ${time}  *  * Copyright ${year} Cepiao Co. Ltd.  All rights reserved.  * CEPIAO PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.  */  

 

類(lèi)注釋模板:

 

java 代碼 /**   * Class ${type_name}  *  * @author   * @version Revision:1.0.0,Date: ${date} ${time} $$   * ${tags}  */  

 

 

以下是新生成的Test類(lèi):

 

java 代碼 /**  * @(#)Test.java 1.0.0 2007/05/10 14:10:11  *  * Copyright 2007 Cepiao Co. Ltd.  All rights reserved.  * CEPIAO PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.  */  package com.cepiao.test;     /**  * Class Test  *  * @author   * @version $Revision:1.0.0, $Date: 2007/05/10 14:10:11 $  */  public class Test {     }  

 

 

發(fā)下是修改過(guò)的GlobalTemplateVariables類(lèi)源代碼:

 

java 代碼 /*******************************************************************************  * Copyright (c) 2000, 2006 IBM Corporation and others.  * All rights reserved. This program and the accompanying materials  * are made available under the terms of the Eclipse Public License v1.0  * which accompanies this distribution, and is available at  * http://www.eclipse.org/legal/epl-v10.html  *  * Contributors:  *     IBM Corporation - initial API and implementation  *     Sebastian Davids: sdavids@gmx.de - see bug 25376  *******************************************************************************/  package org.eclipse.jface.text.templates;     import java.text.SimpleDateFormat;     //import com.ibm.icu.text.DateFormat;  import com.ibm.icu.util.Calendar;     /**   * Global variables which are available in any context.  * 

 

   * Clients may instantiate the classes contained within this class.  * 

 

   *   * @since 3.0  */  public class GlobalTemplateVariables ...{         /**  The type of the selection variables. */      public static final String SELECTION = "selection"; //$NON-NLS-1$         /**       * The cursor variable determines the cursor placement after template      * edition.      */      public static class Cursor extends SimpleTemplateVariableResolver ...{             /** Name of the cursor variable, value= {@value} */          public static final String NAME = "cursor"; //$NON-NLS-1$             /**           * Creates a new cursor variable          */          public Cursor() ...{              super(NAME, TextTemplateMessages                      .getString("GlobalVariables.variable.description.cursor")); //$NON-NLS-1$              setEvaluationString(""); //$NON-NLS-1$          }       }          /**       * The Word selection variable determines templates that work on a full      * lines selection.      */      public static class WordSelection extends SimpleTemplateVariableResolver ...{             /**  Name of the word selection variable, value= {@value} */          public static final String NAME = "word_selection"; //$NON-NLS-1$             /**           * Creates a new word selection variable          */          public WordSelection() ...{              super(                      NAME,                       TextTemplateMessages                               .getString("GlobalVariables.variable.description.selectedWord")); //$NON-NLS-1$          }              protected String resolve(TemplateContext context) ...{              String selection = context.getVariable(SELECTION);              if (selection == null)                  return ""; //$NON-NLS-1$              return selection;          }       }          /**       * The line selection variable determines templates that work on selected      * lines.      */      public static class LineSelection extends SimpleTemplateVariableResolver ...{             /**  Name of the line selection variable, value= {@value} */          public static final String NAME = "line_selection"; //$NON-NLS-1$             /**           * Creates a new line selection variable          */          public LineSelection() ...{              super(                      NAME,                       TextTemplateMessages                               .getString("GlobalVariables.variable.description.selectedLines")); //$NON-NLS-1$          }              protected String resolve(TemplateContext context) ...{              String selection = context.getVariable(SELECTION);              if (selection == null)                  return ""; //$NON-NLS-1$              return selection;          }       }          /**       * The dollar variable inserts an escaped dollar symbol.      */      public static class Dollar extends SimpleTemplateVariableResolver ...{          /**          * Creates a new dollar variable          */          public Dollar() ...{              super(                      "dollar", TextTemplateMessages.getString("GlobalVariables.variable.description.dollar")); //$NON-NLS-1$ //$NON-NLS-2$              setEvaluationString("$"); //$NON-NLS-1$          }       }          /**       * The date variable evaluates to the current date.      */      public static class Date extends SimpleTemplateVariableResolver ...{          /**           * Creates a new date variable          */          public Date() ...{              super(                      "date", TextTemplateMessages.getString("GlobalVariables.variable.description.date")); //$NON-NLS-1$ //$NON-NLS-2$          }              protected String resolve(TemplateContext context) ...{              // return DateFormat.getDateInstance().format(new java.util.Date());              // Modified by yawolf@gmail.com              final SimpleDateFormat df = new SimpleDateFormat("yyyy/MM/dd");              return df.format(new java.util.Date());          }       }          /**       * The year variable evaluates to the current year.      */      public static class Year extends SimpleTemplateVariableResolver ...{          /**          * Creates a new year variable          */          public Year() ...{              super(                      "year", TextTemplateMessages.getString("GlobalVariables.variable.description.year")); //$NON-NLS-1$ //$NON-NLS-2$          }              protected String resolve(TemplateContext context) ...{              return Integer.toString(Calendar.getInstance().get(Calendar.YEAR));          }       }          /**      * The time variable evaluates to the current time.      */      public static class Time extends SimpleTemplateVariableResolver ...{          /**           * Creates a new time variable          */          public Time() ...{              super(                      "time", TextTemplateMessages.getString("GlobalVariables.variable.description.time")); //$NON-NLS-1$ //$NON-NLS-2$          }              /**           * {@inheritDoc}          */          protected String resolve(TemplateContext context) ...{              // return DateFormat.getTimeInstance().format(new java.util.Date());              // Modified by yawolf@gmail.com              final SimpleDateFormat ldf = new SimpleDateFormat("HH:mm:ss");              return ldf.format(new java.util.Date());          }       }          /**       * The user variable evaluates to the current user.      */      public static class User extends SimpleTemplateVariableResolver ...{          /**           * Creates a new user name variable          */          public User() ...{              super(                      "user", TextTemplateMessages.getString("GlobalVariables.variable.description.user")); //$NON-NLS-1$ //$NON-NLS-2$          }              /**           * {@inheritDoc}          */          protected String resolve(TemplateContext context) ...{              return System.getProperty("user.name"); //$NON-NLS-1$          }       }   }
發(fā)表評(píng)論 共有條評(píng)論
用戶(hù)名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 县级市| 侯马市| 河津市| 枣阳市| 沈阳市| 伊川县| 榆社县| 宣城市| 大方县| 台湾省| 泊头市| 河池市| 桃江县| 会同县| 唐海县| 嘉峪关市| 乌恰县| 垫江县| 沙河市| 吉安市| 乳源| 永川市| 新泰市| 基隆市| 娄烦县| 肥乡县| 宁波市| 乐至县| 廊坊市| 嵩明县| 永宁县| 呼图壁县| 松阳县| 洞头县| 盘锦市| 林芝县| 多伦县| 高唐县| 保康县| 浙江省| 永福县|