Package org.eclipse.jface.util

Examples of org.eclipse.jface.util.ILogger


      }
    });

    // Pass all errors and warnings to the status handling facility
    // and the rest to the main runtime log
    Policy.setLog(new ILogger() {
      public void log(IStatus status) {
        if (status.getSeverity() == IStatus.WARNING
            || status.getSeverity() == IStatus.ERROR) {
          StatusManager.getManager().handle(status);
        } else {
View Full Code Here

TOP

Related Classes of org.eclipse.jface.util.ILogger

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.