in plugins/org.apache.geronimo.st.v30.ui/src/main/java/org/apache/geronimo/st/v30/ui/sections/ServerEditorPublishAdvancedSection.java [60:223]
public void createSection(Composite parent) {
super.createSection(parent);
FormToolkit toolkit = getFormToolkit(parent.getDisplay());
Section section = toolkit.createSection(parent,
ExpandableComposite.TWISTIE | ExpandableComposite.EXPANDED
| ExpandableComposite.TITLE_BAR | Section.DESCRIPTION
| ExpandableComposite.FOCUS_TITLE);
section.setText(Messages.editorSectionPublishAdvancedTitle);
section.setDescription(Messages.editorSectionPublishAdvancedDescription);
section.setLayoutData(new GridData(SWT.FILL, SWT.FILL, false, false));
Composite composite = toolkit.createComposite(section);
GridLayout layout = new GridLayout();
layout.numColumns = 2;
layout.marginHeight = 5;
layout.marginWidth = 10;
layout.verticalSpacing = 5;
layout.horizontalSpacing = 15;
composite.setLayout(layout);
composite.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, false));
section.setClient(composite);
createLabel(composite, Messages.publishingTimeout, toolkit);
publishTimeout = new Spinner(composite, SWT.BORDER);
publishTimeout.setMinimum(0);
publishTimeout.setIncrement(5);
publishTimeout.setMaximum(60 * 60 * 24); // 24 hours
publishTimeout.setSelection((int) gs.getPublishTimeout() / 1000);
SWTUtil.setSpinnerTooltip(publishTimeout);
publishTimeout.addModifyListener(new ModifyListener() {
public void modifyText(ModifyEvent e) {
if (publishTimeout.getData() == null) {
execute(new SetPublishTimeoutCommand(server, publishTimeout));
} else {
publishTimeout.setData(null);
}
SWTUtil.setSpinnerTooltip(publishTimeout);
}
});
refreshOSGiBundle = toolkit.createButton(composite, Messages.refreshOSGiBundle, SWT.CHECK);
refreshOSGiBundle.setSelection(gs.isRefreshOSGiBundle());
refreshOSGiBundle.addSelectionListener(new SelectionAdapter() {
public void widgetSelected(SelectionEvent e) {
if (refreshOSGiBundle.getData() == null) {
execute(new CheckSetPropertyCommand(server, "RefreshOSGiBundle", refreshOSGiBundle));
} else {
refreshOSGiBundle.setData(null);
}
}
});
Label refreshOSGiLabel = toolkit.createLabel(composite, Messages.refreshOSGiBundleDescription, SWT.WRAP);
refreshOSGiLabel.setForeground(toolkit.getColors().getColor(IFormColors.TITLE));
GridData refreshOSGiGridData = new GridData(SWT.LEFT, SWT.CENTER, true, true, 2, 5);
refreshOSGiGridData.widthHint = 350;
refreshOSGiLabel.setLayoutData(refreshOSGiGridData);
includesEditor = (new ListEditor(toolkit) {
public void modified() {
execute(new SetNoRedeployFilePatternCommand(server, true, includesEditor.getItems()));
}
public Wizard getWizard() {
return (new ListEditorWizard(this) {
public String getWizardPageLabel() {
return Messages.filePattern;
}
public String getAddWizardWindowTitle() {
return Messages.wizardNewTitle_IncludeFilePattern;
}
public String getEditWizardWindowTitle() {
return Messages.wizardEditTitle_IncludeFilePattern;
}
public String getWizardPageDescription() {
return Messages.wizardPageDescription_IncludeFilePattern;
}
public String getWizardPageTitle() {
return Messages.wizardPageTitle_IncludeFilePattern;
}
});
}
});
includesEditor.setTitle(Messages.includeFilePatterns);
includesEditor.setDefaultValues(GeronimoServerDelegate.DEFAULT_NOREDEPLOY_INCLUDE_PATTERNS);
excludesEditor = (new ListEditor(toolkit) {
public void modified() {
execute(new SetNoRedeployFilePatternCommand(server, false, excludesEditor.getItems()));
}
public Wizard getWizard() {
return (new ListEditorWizard(this) {
public String getWizardPageLabel() {
return Messages.filePattern;
}
public String getAddWizardWindowTitle() {
return Messages.wizardNewTitle_ExcludeFilePattern;
}
public String getEditWizardWindowTitle() {
return Messages.wizardEditTitle_ExcludeFilePattern;
}
public String getWizardPageDescription() {
return Messages.wizardPageDescription_ExcludeFilePattern;
}
public String getWizardPageTitle() {
return Messages.wizardPageTitle_ExcludeFilePattern;
}
});
}
});
excludesEditor.setTitle(Messages.excludeFilePatterns);
excludesEditor.setDefaultValues(GeronimoServerDelegate.DEFAULT_NOREDEPLOY_EXCLUDE_PATTERNS);
noRedeploy = toolkit.createButton(composite, Messages.noRedeployOption, SWT.CHECK);
noRedeploy.setEnabled(!(server.getServerType().supportsRemoteHosts() && !SocketUtil.isLocalhost(server.getHost())));
noRedeploy.addSelectionListener(new SelectionListener() {
public void widgetSelected(SelectionEvent e) {
if (noRedeploy.getData() == null) {
execute(new CheckSetPropertyCommand(server, "NoRedeploy", noRedeploy));
} else {
noRedeploy.setData(null);
}
includesEditor.setEnabled(noRedeploy.getSelection());
excludesEditor.setEnabled(noRedeploy.getSelection());
}
public void widgetDefaultSelected(SelectionEvent e) {
}
});
noRedeploy.setLayoutData(new GridData(SWT.LEFT, SWT.CENTER, false, false, 2, 1));
Label noRedeployLabel = toolkit.createLabel(composite, Messages.noRedeployOptionDescription, SWT.WRAP);
noRedeployLabel.setForeground(toolkit.getColors().getColor(IFormColors.TITLE));
GridData noRedeployGridData = new GridData(SWT.LEFT, SWT.CENTER, true, true, 2, 5);
noRedeployGridData.widthHint = 350;
noRedeployLabel.setLayoutData(noRedeployGridData);
includesEditor.createClient(composite);
includesEditor.getComposite().setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, false, 2, 1));
excludesEditor.createClient(composite);
excludesEditor.getComposite().setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, false, 2, 1));
if (gs != null) {
noRedeploy.setSelection(gs.isNoRedeploy());
includesEditor.setEnabled(noRedeploy.getSelection());
excludesEditor.setEnabled(noRedeploy.getSelection());
includesEditor.setItems(gs.getNoRedeployFilePatterns(true));
excludesEditor.setItems(gs.getNoRedeployFilePatterns(false));
}
}