Package com.positive.charts.internal

Source Code of com.positive.charts.internal.Log

package com.positive.charts.internal;

import org.eclipse.core.runtime.ILog;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Status;

public class Log {

  public static void warn(final String message) {
    final ILog log = ChartsPlugin.getDefault().getLog();
    log.log(new Status(IStatus.WARNING, ChartsPlugin.ID, 0, message, null));
  }

}
TOP

Related Classes of com.positive.charts.internal.Log

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.