위치
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 (현재 연도)
'eclipse' 카테고리의 다른 글
이클립스 메이븐 Maven dependency lib export 추출 방법 (1) | 2015.09.02 |
---|---|
이클립스 문장 자동 완성 word completion 설정 (0) | 2013.07.23 |
eclipse 한글 크게 나오게 하기 (0) | 2013.03.18 |
라이브러리 소스 디컴파일 간편하게 보기 (0) | 2012.02.10 |