'단축키'에 해당하는 글 3건


이클립스 주석문(설명문) 주석문단축키

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


 

파일정보 주석 (소스 가장 위 상단을 선택)

Types -> Edit

/**
 * @FileName  : ${file_name}
 * @Project     : ${project_name}
 * @Date         : ${date}
 * @작성자      : ${user}

 * @변경이력 :
 * @프로그램 설명 :
 */



메소드정보 주석 (원하는 함수를 선택)

Methods -> Edit

/**
 * @Method Name  : ${enclosing_method}
 * @작성일   : ${date}
 * @작성자   : ${user}
 * @변경이력  :
 * @Method 설명 :
 * ${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

'단축키 > eclipse' 카테고리의 다른 글

Eclipse  (0) 2013.11.15

WRITTEN BY
먿쨍이
개발바보

,

Eclipse

단축키/eclipse 2013. 11. 15. 11:03

단축키 :

  1. F11 : Debug
  2. Alt+shift+a : toggle block selection

3. Ctrl + Shift + O : 자동으로 import 하기

'단축키 > eclipse' 카테고리의 다른 글

이클립스 주석문(설명문) 주석문단축키  (0) 2013.12.13

WRITTEN BY
먿쨍이
개발바보

,

윈도우키 + s : 바로 화면캡쳐가 실행된다.


WRITTEN BY
먿쨍이
개발바보

,