myeclipse set get帶註釋的方法


 

步驟:eclipse

1:在myeclipse/eclisp中搜索找到org.eclipse.jdt.ui_*.jar(*是版本號)工具

2:將jar用解壓rar方式打開開發工具

3:找到\org\eclipse\jdt\internal\corext\codemanipulation這個目錄下的GetterSetterUtil.class這個文件,而後下載http://download.csdn.net/detail/zygzzp/7100331這個class文件替換ui

4:開啓開發工具找到Window->Preferences->Java->CodeStyle->Code Templates->Comments->Getters/Settersthis

設置getters爲:.net

 

/**  
 * 獲取${bare_field_name}  
 * @return ${bare_field_name} ${bare_field_name}  
 */
設置setters爲:
 
/** * 設置${bare_field_name} * @param ${bare_field_name} ${bare_field_name} */

Alt+shift+s+r,alt+a(全選) 快捷鍵 生成Get/Set方法 記着勾選上Generate method comments code

效果以下:
/**
	 * 公司簡稱
	 */
	private String company_abbreviation;
/**
	 * 獲取公司簡稱 
	 * @return company_abbreviation 公司簡稱  
	 */
	public String getCompany_abbreviation() {
		return company_abbreviation;
	}
	/**
	 * 設置公司簡稱  
	 * @param company_abbreviation 公司簡稱 
	 */
	public void setCompany_abbreviation(String company_abbreviation) {
		this.company_abbreviation = company_abbreviation;
	}
相關文章
相關標籤/搜索