Examples of IStatusChangeListener


Examples of com.onpositive.semantic.model.api.property.IStatusChangeListener

              editor.getControl().getShell().layout(true, true);
              editor.getControl().getShell().pack(true);
            }
          });
          ok.setEnabled(false);
          b.addStatusChangeListener(new IStatusChangeListener() {

            public void statusChanged(IBinding bnd,
                CodeAndMessage cm) {
              ok.setEnabled(cm.getCode() == 0);
View Full Code Here

Examples of org.eclipse.dltk.ui.util.IStatusChangeListener

   * Returns a new status change listener that calls {@link #setPreferenceContentStatus(IStatus)}
   * when the status has changed
   * @return The new listener
   */
  protected IStatusChangeListener getNewStatusChangedListener() {
    return new IStatusChangeListener() {
      public void statusChanged(IStatus status) {
        setPreferenceContentStatus(status);
      }
    };
  }
View Full Code Here

Examples of org.eclipse.jdt.internal.ui.wizards.IStatusChangeListener

   * Returns a new status change listener that calls
   * {@link #setPreferenceContentStatus(IStatus)} when the status has changed
   * @return The new listener
   */
  protected IStatusChangeListener getNewStatusChangedListener() {
    return new IStatusChangeListener() {
      public void statusChanged(IStatus status) {
        setPreferenceContentStatus(status);
      }
    };
  }
View Full Code Here

Examples of org.eclipse.php.internal.ui.preferences.IStatusChangeListener

    final Group group = new Group(composite, SWT.NONE);
    group.setLayoutData(new GridData(GridData.FILL_HORIZONTAL));
    group.setLayout(this.composerProjectWizardFirstPage.initGridLayout(new GridLayout(numColumns, false), true));
    group.setText("");

    fConfigurationBlock = createConfigurationBlock(new IStatusChangeListener() {
      public void statusChanged(IStatus status) {
      }
    }, (IProject) null, null);
    fConfigurationBlock.setMinimumVersion(minimumVersion);
    fConfigurationBlock.createContents(group);
View Full Code Here

Examples of org.eclipse.php.internal.ui.preferences.IStatusChangeListener

    return ResourcesPlugin.getWorkspace().getRoot().getProject(
        "DUMMY______________Project"); //$NON-NLS-1$
  }

  protected IStatusChangeListener getNewStatusChangedListener() {
    return new IStatusChangeListener() {
      public void statusChanged(IStatus status) {
      }
    };
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.