Esempio n. 1
0
 public BundleReleaseDialog(Shell parentShell, Project project, List<JarDiff> compare) {
   super(parentShell);
   super.setShellStyle(SWT.DIALOG_TRIM | SWT.RESIZE | SWT.MAX | SWT.MIN);
   this.project = project;
   release = new BundleRelease(compare);
   this.diffs = compare;
 }
 protected void setShellStyle(int newShellStyle) {
   super.setShellStyle(newShellStyle | SWT.RESIZE);
 }