Package org.eclipse.ui.statushandlers

Examples of org.eclipse.ui.statushandlers.StatusManager.handle()


  int style = StatusManager.LOG;

  if (status.getSeverity() == IStatus.ERROR) {
      style = StatusManager.LOG | StatusManager.SHOW | StatusManager.BLOCK;
      StatusManager stMan = StatusManager.getManager();
      stMan.handle(status, style);
  } else {
      Activator.getDefault().getLog().log(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.