Eclipse 자동 주석 설정

eclipse 2012. 12. 14. 11:11 Posted by jiddong

위치 

Window -> Preferences -> Java  -> Code Style -> Code Templates -> Comments 

Window -> Preferences -> JavaScript  -> Code Style -> Code Templates -> Comments 



Function or method  설정  예시


/**

 * @package : ${package_name}/${file_name}

 * @author : ${user}  

 * @date : ${date}

 * ${tags}

 * ${enclosing_type}

 */


메소드에서 주석 생성하면 이런 식으로 나옴


/**

 * 현재 패스가 폰인지 패드인지 확인 

 * @package : js/schedule/phone/scheduleList.java

 * @author : 이름

 * @date : 2012. 12. 13.

 * @returns {Boolean}

 *

 */


${}  상세 내용설명

data : Current date (현재 날짜)

dollar : The dollar symbol (달러문양)

enclosing_type :The type enclosing the method (선택된 메소드의 타입)

file_name : Name of the enclosing compilation (선택된 편집파일 이름)

package_name : Name of the enclosing package (선택된 패키지 이름)

project_name : Name of the enclosing project (선택된 프로젝트 이름)

tags : Generated Javadoc tags (@param, @return...) (Javedoc 태그 생성)

time : Current time (현재 시간)

todo : Todo task tag ('해야할일'태그 생성)

type_name : Name of the current type (현재 타입의 이름)

user : User name (사용자 이름)

year : Current year (현재 연도)



참조 블로그