Package org.infinitest.eclipse

Examples of org.infinitest.eclipse.InfinitestPlugin


public class EclipseLoggingListener implements LoggingListener {
  @Override
  public void logError(String message, Throwable throwable) {
    Status status = new Status(IStatus.ERROR, PLUGIN_ID, message, throwable);
    InfinitestPlugin plugin = InfinitestPlugin.getInstance();
    if (plugin != null) {
      plugin.getLog().log(status);
    }
  }
View Full Code Here


  }

  @Override
  public void logMessage(Level level, String message) {
    Status status = new Status(levelToStatus(level), PLUGIN_ID, message);
    InfinitestPlugin plugin = InfinitestPlugin.getInstance();
    if (plugin != null) {
      plugin.getLog().log(status);
    }
  }
View Full Code Here

TOP

Related Classes of org.infinitest.eclipse.InfinitestPlugin

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.