@Override public void createPage() { super.createPage(); Composite parent = (Composite) getContent(); coolBar = new CoolBar(parent, SWT.FLAT); createControlsToolBar(coolBar); createConfigurationToolBar(coolBar); packCoolBar(); SashForm sashForm = new SashForm(parent, SWT.NONE); sashForm.setLayout(new GridLayout()); sashForm.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true)); sashForm.setOrientation(SWT.VERTICAL); sashForm.SASH_WIDTH = 3; createScriptTableSection(sashForm); createStatusWindow(sashForm); sashForm.setWeights(new int[] {8, 2}); setMinSize(0, 0); // TODO: Change to use OteHelpContext HelpUtil.setHelp(this, "test_manager_scripts_page", "org.eclipse.osee.framework.help.ui"); }
@Override public void dispose() { scriptTable.dispose(); testManagerEditor.storeValue(testManagerEditor.scriptsQualName, scriptTable.getStorageString()); OseeLog.log(TestManagerPlugin.class, Level.INFO, "ScriptPage Dispose Called"); super.dispose(); }