Window >> Preferences >> Java >> Code Style >> Code Templates >> Comments
Files (*.java, *.jsp 등, 파일 맨 위에 생성되는 주석 설정)
/**
* <pre>
* 1. 프로젝트명 : ${project_name}
* 2. 패키지명(또는 디렉토리 경로) : ${package_name}
* 3. 파일명 : ${file_name}
* 4. 작성일 : ${date} ${time}
* 5. 작성자 : ${user}
* 6. 설명 :
* </pre>
*/
Types (클래스명 바로 위에 생성되는 주석 설정)
/**
* <pre>
* 1. 패키지명 : ${package_name}
* 2. 타입명 : ${file_name}
* 3. 작성일 : ${date} ${time}
* 4. 작성자 : ${user}
* 5. 설명 :
* </pre>
* ${tags}
*/
Methods (메소드명 바로 위에 생성되는 주석 설정)
생성자나 오버라이드되는 메소드, 또는 getter/setter는 별도 설정
/**
* <pre>
* 1. 메소드명 : ${enclosing_method}
* 2. 작성일 : ${date} ${time}
* 3. 작성자 : ${user}
* 4. 설명 :
* </pre>
* ${tags}
*/
* 자주 쓰이는 설정(예, ${date})
date : Current date (현재 날짜)
time : Current time (현재 시간)
user : User name (사용자 이름)
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 태그 생성)
메소드나 클래스 바로 위에 주석(/**) 시작 입력하고 엔터 누르면 자동으로 위에서 설정한 주석 템플릿이 생성된다.
참고로 주석입력 단축키는 ALT + SHIFT + J 이다.