熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> Java編程 >> Java開源技術 >> 正文

Eclipse工具使用格式化模板應用

2022-06-13   來源: Java開源技術 

  在編寫完代碼後使用代碼格式化程序對代碼進行格式化有利於版本沖突時進行對比和文件合並想到當前代碼編寫格式多少有些太個性化如果可以創建一份代碼模板將之導入到所有人的工具中然後所有的代碼在編寫後都進行格式化則避免了代碼格式太混亂的情況有利於大家閱讀代碼

  Comments
Files

  

  /**
* Copyright (C) aumy ${year}
*/

  Getters

  

  /**
* @return Returns the ${bare_field_name}
*/


  Setters

  /**
* @param ${param} The ${bare_field_name} to set
*/

  Constructors

  /**
* ${tags}
*/

  Types

  /**
*
* @author aumy() in ${date}
* @since
*
* ${tags}
*/

  Fields

  /**
*
*/

  Methods

  /**
* ${tags}
* @since
*/

Overriding methods

  

  /* (nonJavadoc)
* ${see_to_overridden}
*/


  代碼
New Java files

  /**
* Copyright (C) aumy ${year}
*/
${package_declaration}
/**
*
* @author aumy() in ${date}
* @since
*/
${typecomment}
${type_declaration}

  Catch block body

  // ${todo} Autogenerated catch block
${exception_var}printStackTrace();

  Method budy

  // ${todo} Autogenerated method stub
${body_statement}

  Constructor body

  ${body_statement}
// ${todo} Autogenerated constructor stub

  Getter body

  return ${field};

  Setter body

  ${field} = ${param};


From:http://tw.wingwit.com/Article/program/Java/ky/201311/27915.html
  • 上一篇文章:

  • 下一篇文章:
  • 推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.