Package org.eclipse.ecf.internal.remoteservice

Examples of org.eclipse.ecf.internal.remoteservice.Activator.log()


  }

  protected void logException(String string, Throwable e) {
    Activator a = Activator.getDefault();
    if (a != null)
      a.log(new Status(IStatus.ERROR, Activator.PLUGIN_ID, string, e));
  }

  protected ID getRemoteCallTargetID() {
    // First synchronize on connect lock
    synchronized (connectLock) {
View Full Code Here


  }

  private void logInfo(String message, Throwable e) {
    Activator a = Activator.getDefault();
    if (a != null)
      a.log(new Status(IStatus.INFO, Activator.PLUGIN_ID, message, e));
  }

  protected void logWarning(String string, Throwable e) {
    Activator a = Activator.getDefault();
    if (a != null)
View Full Code Here

  }

  protected void logWarning(String string, Throwable e) {
    Activator a = Activator.getDefault();
    if (a != null)
      a.log(new Status(IStatus.WARNING, Activator.PLUGIN_ID, string, e));
  }

  /**
   * @since 8.2
   */
 
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.