Package org.eclipse.ui.internal.statushandlers.StatusNotificationManager

Examples of org.eclipse.ui.internal.statushandlers.StatusNotificationManager.StatusInfo


  /**
   * The selection in the multiple job list has changed. Update widget
   * enablements and repopulate the list.
   */
  void handleSelectionChange() {
    StatusInfo newSelection = getSingleSelection();
    if (newSelection != null && newSelection != selectedStatus) {
      selectedStatus = newSelection;
      setStatus(selectedStatus.getStatus().getStatus());
      updateEnablements();
      showDetailsArea();
View Full Code Here

TOP

Related Classes of org.eclipse.ui.internal.statushandlers.StatusNotificationManager.StatusInfo

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.