org.eclipse.core.runtime.Status.getPlugin()方法的使用及代码示例

x33g5p2x  于2022-01-29 转载在 其他  
字(2.5k)|赞(0)|评价(0)|浏览(96)

本文整理了Java中org.eclipse.core.runtime.Status.getPlugin()方法的一些代码示例,展示了Status.getPlugin()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Status.getPlugin()方法的具体详情如下:
包路径:org.eclipse.core.runtime.Status
类名称:Status
方法名:getPlugin

Status.getPlugin介绍

暂无

代码示例

代码示例来源:origin: org.eclipse.core/runtime

/**
 * Logs performance event failures to the platform's performance log
 */
private void logFailure(PerformanceStats stats, String pluginId, long elapsed) {
  //may have failed to get the performance log service
  if (log == null)
    return;
  if (pluginId == null)
    pluginId = Platform.PI_RUNTIME;
  String msg = "Performance failure: " + stats.getEvent() + " blame: " + stats.getBlameString() + " context: " + stats.getContext() + " duration: " + elapsed; //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
  Status status = new Status(IStatus.WARNING, pluginId, 1, msg, new RuntimeException());
  log.log(new FrameworkLogEntry(status, status.getPlugin(), status.getSeverity(), status.getCode(), status.getMessage(), 0, status.getException(), null));
}

代码示例来源:origin: org.eclipse.scout.sdk.deps/org.eclipse.core.runtime

/**
 * Logs performance event failures to the platform's performance log
 */
private void logFailure(PerformanceStats stats, String pluginId, long elapsed) {
  //may have failed to get the performance log service
  if (log == null)
    return;
  if (pluginId == null)
    pluginId = Platform.PI_RUNTIME;
  String msg = "Performance failure: " + stats.getEvent() + " blame: " + stats.getBlameString() + " context: " + stats.getContext() + " duration: " + elapsed; //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
  Status status = new Status(IStatus.WARNING, pluginId, 1, msg, new RuntimeException());
  log.log(new FrameworkLogEntry(status, status.getPlugin(), status.getSeverity(), status.getCode(), status.getMessage(), 0, status.getException(), null));
}

代码示例来源:origin: org.jibx.config.3rdparty.org.eclipse/org.eclipse.core.runtime

/**
 * Logs performance event failures to the platform's performance log
 */
private void logFailure(PerformanceStats stats, String pluginId, long elapsed) {
  //may have failed to get the performance log service
  if (log == null)
    return;
  if (pluginId == null)
    pluginId = Platform.PI_RUNTIME;
  String msg = "Performance failure: " + stats.getEvent() + " blame: " + stats.getBlameString() + " context: " + stats.getContext() + " duration: " + elapsed; //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
  Status status = new Status(IStatus.WARNING, pluginId, 1, msg, new RuntimeException());
  log.log(new FrameworkLogEntry(status, status.getPlugin(), status.getSeverity(), status.getCode(), status.getMessage(), 0, status.getException(), null));
}

相关文章