Package org.eclipse.dltk.ui.util

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

TOP

Related Classes of org.eclipse.dltk.ui.util.IStatusChangeListener

Copyright © 2018 www.massapicom. 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.