本文整理了Java中org.eclipse.core.runtime.Status.getSeverity()
方法的一些代码示例,展示了Status.getSeverity()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Status.getSeverity()
方法的具体详情如下:
包路径:org.eclipse.core.runtime.Status
类名称:Status
方法名:getSeverity
暂无
代码示例来源: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: com.google.code.maven-play-plugin.org.eclipse.jdt/org.eclipse.jdt.core
/**
* @see IStatus#getSeverity()
*/
public int getSeverity() {
if (this.children == NO_CHILDREN) return super.getSeverity();
int severity = -1;
for (int i = 0, max = this.children.length; i < max; i++) {
int childrenSeverity = this.children[i].getSeverity();
if (childrenSeverity > severity) {
severity = childrenSeverity;
}
}
return severity;
}
/**
代码示例来源:origin: org.eclipse.jdt/org.eclipse.jdt.core
/**
* @see IStatus#getSeverity()
*/
@Override
public int getSeverity() {
if (this.children == NO_CHILDREN) return super.getSeverity();
int severity = -1;
for (int i = 0, max = this.children.length; i < max; i++) {
int childrenSeverity = this.children[i].getSeverity();
if (childrenSeverity > severity) {
severity = childrenSeverity;
}
}
return severity;
}
/**
代码示例来源:origin: trylimits/Eclipse-Postfix-Code-Completion
/**
* @see IStatus#getSeverity()
*/
public int getSeverity() {
if (this.children == NO_CHILDREN) return super.getSeverity();
int severity = -1;
for (int i = 0, max = this.children.length; i < max; i++) {
int childrenSeverity = this.children[i].getSeverity();
if (childrenSeverity > severity) {
severity = childrenSeverity;
}
}
return severity;
}
/**
代码示例来源:origin: org.jibx.config.3rdparty.org.eclipse/org.eclipse.jdt.core
/**
* @see IStatus#getSeverity()
*/
public int getSeverity() {
if (this.children == NO_CHILDREN) return super.getSeverity();
int severity = -1;
for (int i = 0, max = this.children.length; i < max; i++) {
int childrenSeverity = this.children[i].getSeverity();
if (childrenSeverity > severity) {
severity = childrenSeverity;
}
}
return severity;
}
/**
代码示例来源:origin: org.eclipse.tycho/org.eclipse.jdt.core
/**
* @see IStatus#getSeverity()
*/
public int getSeverity() {
if (this.children == NO_CHILDREN) return super.getSeverity();
int severity = -1;
for (int i = 0, max = this.children.length; i < max; i++) {
int childrenSeverity = this.children[i].getSeverity();
if (childrenSeverity > severity) {
severity = childrenSeverity;
}
}
return severity;
}
/**
代码示例来源:origin: org.eclipse.scout.sdk.deps/org.eclipse.jdt.core
/**
* @see IStatus#getSeverity()
*/
public int getSeverity() {
if (this.children == NO_CHILDREN) return super.getSeverity();
int severity = -1;
for (int i = 0, max = this.children.length; i < max; i++) {
int childrenSeverity = this.children[i].getSeverity();
if (childrenSeverity > severity) {
severity = childrenSeverity;
}
}
return severity;
}
/**
代码示例来源: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));
}
代码示例来源: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));
}
内容来源于网络,如有侵权,请联系作者删除!