일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- rowspan
- jQuery
- MFC
- swingx
- phonegap
- JDOM
- MySQL
- PLSQL
- ibsheet
- tomcat
- PHP
- dock
- JSON
- appspresso
- sencha touch
- Google Map
- 선택적조인
- Struts
- node.js
- WebLogic
- iBATIS
- 전자정부프레임워크
- Eclipse
- Android
- oracle
- jsr 296
- 가우스
- Ajax
- GPS
- Spring
Archives
- Today
- Total
Where The Streets Have No Name
workbench가 열리때 최대로 열리게 본문
package rcpview;
import org.eclipse.swt.SWT;
import org.eclipse.swt.graphics.Point;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.ui.application.ActionBarAdvisor;
import org.eclipse.ui.application.IActionBarConfigurer;
import org.eclipse.ui.application.IWorkbenchWindowConfigurer;
import org.eclipse.ui.application.WorkbenchWindowAdvisor;
public class ApplicationWorkbenchWindowAdvisor extends WorkbenchWindowAdvisor {
public ApplicationWorkbenchWindowAdvisor(IWorkbenchWindowConfigurer configurer) {
super(configurer);
}
public ActionBarAdvisor createActionBarAdvisor(IActionBarConfigurer configurer) {
return new ApplicationActionBarAdvisor(configurer);
}
public void preWindowOpen() {
IWorkbenchWindowConfigurer configurer = getWindowConfigurer();
//configurer.setInitialSize(new Point(400, 300));
//configurer.setShellStyle(SWT.NO_TRIM | SWT.ON_TOP);
configurer.setShowCoolBar(false);
configurer.setShowStatusLine(false);
}
@Override
public void createWindowContents(Shell shell) {
super.createWindowContents(shell);
shell.setMaximized(true);
}
}