Eclipse 에서 org.eclipse.jface.dialogs.Dialog 를 상속받아 Custom Dialog 를 구현하다보면,
setTitle() 이나 setImage() 등의 메소드가 존재하지 않아 당황 스러운 경우가 있다.
이때는 당황하지말고 protected void configureShell(Shell shell) 함수를 override 하면 title 이나 title image 등을 편집할 수 있다.
@Override protected void configureShell(Shell shell) { super.configureShell(shell); shell.setText("My Custom Label"); }
configureShell 함수 Override 전
configureShell 함수 Override 후
참고: http://wiki.eclipse.org/FAQ_How_do_I_set_the_title_of_a_custom_dialog%3F
'Eclipse' 카테고리의 다른 글
[Eclipse] Eclipse Runtime 에 jar 안의 resource 에 대한 Local URL 얻어오기 (0) | 2013.10.03 |
---|---|
[Eclipse] extension 의 IConfigurationElement 으로 부터 해당 Bundle 얻어오기 (0) | 2013.10.02 |
[Eclipse] ISelection 종류판단하기 (0) | 2013.05.12 |
Java Decompiler 설치 (0) | 2013.05.06 |
[Eclipse] Specified VM install not found: type Standard VM 에러 발생시 (0) | 2013.05.02 |