일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- Spring
- 크리스마스
- 티스토리챌린지
- 쿠키런킹덤
- 쿠키런킹덤크리스마스
- JavaScript
- 쿠킹덤
- 프로그래머스
- 개발자
- MySQL
- 오블완
- Eclipse
- 자바
- 이클립스
- Java
- oracle
- 노마드코더
- Unity
- 웹개발
- programmers
- 자바스크립트
- edwith
- 유니티
- 쿠킹덤공략
- 홀리데이익스프레스
- HTML
- SQL
- dart
- 딥러닝
- 쿠키런킹덤공략
- Today
- Total
Dev study and notes
이클립스 주석 (파일정보/ 메소드정보) 자동완성 설정하기 본문
Window -> Preferences -> Java -> Code Style -> Code Templates -> Comments 에서
파일 정보 주석 (소스 가장 위 상단을 선택)
Types -> Edit
/**
* @FileName : ${file_name}
* @Project : ${project_name}
* @Date : ${date}
* @작성자 : ${user}
* @변경이력 :
* @프로그램 설명 :
*/
영문용
/**
* @FileName : ${file_name}
* @Project : ${project_name}
* @Date : ${date}
* @author: ${user}
* @version :
* @program info :
*/
메소드정보 주석 (원하는 함수를 선택)
Methods -> Edit
/**
* @Method Name : ${enclosing_method}
* @작성일 : ${date}
* @작성자 : ${user}
* @변경이력 :
* @Method 설명 :
* ${tags}
*/
영문용
/**
* @Method Name : ${enclosing_method}
* @date : ${date}
* @author : ${user}
* @version :
* @Method info :
* ${tags}
*/
${} 내용설명
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 (현재 연도)
3.2 기준으로 주석입력 단축키는 ALT + SHIFT + J
'errorSolution' 카테고리의 다른 글
git 프로젝트 import 후 오류 (0) | 2021.03.09 |
---|---|
jsp 생성 이클립스 에러 해결 The superclass "javax.servlet.http.HttpServlet" was not found (0) | 2021.01.16 |
소스트리 오류 발생. push. login. git bash. sourcetree (0) | 2021.01.15 |
jsp 생성 이클립스 에러 해결 The superclass "javax.servlet.http.HttpServlet" was not found (0) | 2021.01.02 |
JSP JQEURY - input type=date 날짜 넣기 날짜 기본값 설정. (1) | 2020.12.23 |