將Shell設為最大化顯示
@Override
public void createWindowContents(Shell shell) {
    shell.setMaximized(true);
    super.createWindowContents(shell);
}
將畫面全螢幕顯示
public void postWindowOpen() {
    final IWorkbenchWindow window = getWindowConfigurer().getWindow();
    Shell shell = window.getShell();
    shell.setMaximized( true );
}
將啟動視窗最大化
IWorkbenchWindowConfigurer configurer = getWindowConfigurer(); Dimension srcd = Toolkit.getDefaultToolkit().getScreenSize();
移除視窗標題列
public void preWindowOpen() {
    configurer.setShellStyle( SWT.NO_TRIM );
}
使用預設EntryPoint進入頁面設定EntryPoint的延伸點
單獨使用servlet名稱連線測試(少了?startup=name)
							
