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

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

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

Status.setCode介绍

[英]Sets the status code.
[中]设置状态代码。

代码示例

代码示例来源:origin: com.github.veithen.cosmos.bootstrap/org.eclipse.equinox.common

/**
 * Creates a new status object.  The created status has no children.
 *
 * @param severity the severity; one of <code>OK</code>, <code>ERROR</code>, 
 * <code>INFO</code>, <code>WARNING</code>,  or <code>CANCEL</code>
 * @param pluginId the unique identifier of the relevant plug-in
 * @param code the plug-in-specific status code, or <code>OK</code>
 * @param message a human-readable message, localized to the
 *    current locale
 * @param exception a low-level exception, or <code>null</code> if not
 *    applicable 
 */
public Status(int severity, String pluginId, int code, String message, Throwable exception) {
  setSeverity(severity);
  setPlugin(pluginId);
  setCode(code);
  setMessage(message);
  setException(exception);
}

代码示例来源:origin: org.eclipse.scout.sdk.deps/org.eclipse.equinox.common

/**
 * Creates a new status object.  The created status has no children.
 *
 * @param severity the severity; one of <code>OK</code>, <code>ERROR</code>, 
 * <code>INFO</code>, <code>WARNING</code>,  or <code>CANCEL</code>
 * @param pluginId the unique identifier of the relevant plug-in
 * @param code the plug-in-specific status code, or <code>OK</code>
 * @param message a human-readable message, localized to the
 *    current locale
 * @param exception a low-level exception, or <code>null</code> if not
 *    applicable 
 */
public Status(int severity, String pluginId, int code, String message, Throwable exception) {
  setSeverity(severity);
  setPlugin(pluginId);
  setCode(code);
  setMessage(message);
  setException(exception);
}

代码示例来源:origin: org.eclipse.equinox/common

/**
 * Creates a new status object.  The created status has no children.
 *
 * @param severity the severity; one of <code>OK</code>, <code>ERROR</code>, 
 * <code>INFO</code>, <code>WARNING</code>,  or <code>CANCEL</code>
 * @param pluginId the unique identifier of the relevant plug-in
 * @param code the plug-in-specific status code, or <code>OK</code>
 * @param message a human-readable message, localized to the
 *    current locale
 * @param exception a low-level exception, or <code>null</code> if not
 *    applicable 
 */
public Status(int severity, String pluginId, int code, String message, Throwable exception) {
  setSeverity(severity);
  setPlugin(pluginId);
  setCode(code);
  setMessage(message);
  setException(exception);
}

代码示例来源:origin: org.eclipse.equinox/common

/**
 * Simplified constructor of a new status object; assumes that code is <code>OK</code> and
 * exception is <code>null</code>. The created status has no children.
 *
 * @param severity the severity; one of <code>OK</code>, <code>ERROR</code>, 
 * <code>INFO</code>, <code>WARNING</code>,  or <code>CANCEL</code>
 * @param pluginId the unique identifier of the relevant plug-in
 * @param message a human-readable message, localized to the
 *    current locale
 *    
 * @since org.eclipse.equinox.common 3.3
 */
public Status(int severity, String pluginId, String message) {
  setSeverity(severity);
  setPlugin(pluginId);
  setMessage(message);
  setCode(OK);
  setException(null);
}

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

/**
 * Creates a new status object.  The created status has no children.
 *
 * @param severity the severity; one of <code>OK</code>, <code>ERROR</code>, 
 * <code>INFO</code>, <code>WARNING</code>,  or <code>CANCEL</code>
 * @param pluginId the unique identifier of the relevant plug-in
 * @param code the plug-in-specific status code, or <code>OK</code>
 * @param message a human-readable message, localized to the
 *    current locale
 * @param exception a low-level exception, or <code>null</code> if not
 *    applicable 
 */
public Status(int severity, String pluginId, int code, String message, Throwable exception) {
  setSeverity(severity);
  setPlugin(pluginId);
  setCode(code);
  setMessage(message);
  setException(exception);
}

代码示例来源:origin: org.eclipse.scout.sdk.deps/org.eclipse.equinox.common

/**
 * Simplified constructor of a new status object; assumes that code is <code>OK</code>.
 * The created status has no children.
 *
 * @param severity the severity; one of <code>OK</code>, <code>ERROR</code>, 
 * <code>INFO</code>, <code>WARNING</code>,  or <code>CANCEL</code>
 * @param pluginId the unique identifier of the relevant plug-in
 * @param message a human-readable message, localized to the
 *    current locale
 * @param exception a low-level exception, or <code>null</code> if not
 *    applicable
 *     
 * @since org.eclipse.equinox.common 3.3
 */
public Status(int severity, String pluginId, String message, Throwable exception) {
  setSeverity(severity);
  setPlugin(pluginId);
  setMessage(message);
  setException(exception);
  setCode(OK);
}

代码示例来源:origin: com.github.veithen.cosmos.bootstrap/org.eclipse.equinox.common

/**
 * Simplified constructor of a new status object; assumes that code is <code>OK</code> and
 * exception is <code>null</code>. The created status has no children.
 *
 * @param severity the severity; one of <code>OK</code>, <code>ERROR</code>, 
 * <code>INFO</code>, <code>WARNING</code>,  or <code>CANCEL</code>
 * @param pluginId the unique identifier of the relevant plug-in
 * @param message a human-readable message, localized to the
 *    current locale
 *    
 * @since org.eclipse.equinox.common 3.3
 */
public Status(int severity, String pluginId, String message) {
  setSeverity(severity);
  setPlugin(pluginId);
  setMessage(message);
  setCode(OK);
  setException(null);
}

代码示例来源:origin: org.eclipse.scout.sdk.deps/org.eclipse.equinox.common

/**
 * Simplified constructor of a new status object; assumes that code is <code>OK</code> and
 * exception is <code>null</code>. The created status has no children.
 *
 * @param severity the severity; one of <code>OK</code>, <code>ERROR</code>, 
 * <code>INFO</code>, <code>WARNING</code>,  or <code>CANCEL</code>
 * @param pluginId the unique identifier of the relevant plug-in
 * @param message a human-readable message, localized to the
 *    current locale
 *    
 * @since org.eclipse.equinox.common 3.3
 */
public Status(int severity, String pluginId, String message) {
  setSeverity(severity);
  setPlugin(pluginId);
  setMessage(message);
  setCode(OK);
  setException(null);
}

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

/**
 * Simplified constructor of a new status object; assumes that code is <code>OK</code> and
 * exception is <code>null</code>. The created status has no children.
 *
 * @param severity the severity; one of <code>OK</code>, <code>ERROR</code>, 
 * <code>INFO</code>, <code>WARNING</code>,  or <code>CANCEL</code>
 * @param pluginId the unique identifier of the relevant plug-in
 * @param message a human-readable message, localized to the
 *    current locale
 *    
 * @since org.eclipse.equinox.common 3.3
 */
public Status(int severity, String pluginId, String message) {
  setSeverity(severity);
  setPlugin(pluginId);
  setMessage(message);
  setCode(OK);
  setException(null);
}

代码示例来源:origin: org.eclipse.equinox/common

/**
 * Simplified constructor of a new status object; assumes that code is <code>OK</code>.
 * The created status has no children.
 *
 * @param severity the severity; one of <code>OK</code>, <code>ERROR</code>, 
 * <code>INFO</code>, <code>WARNING</code>,  or <code>CANCEL</code>
 * @param pluginId the unique identifier of the relevant plug-in
 * @param message a human-readable message, localized to the
 *    current locale
 * @param exception a low-level exception, or <code>null</code> if not
 *    applicable
 *     
 * @since org.eclipse.equinox.common 3.3
 */
public Status(int severity, String pluginId, String message, Throwable exception) {
  setSeverity(severity);
  setPlugin(pluginId);
  setMessage(message);
  setException(exception);
  setCode(OK);
}

代码示例来源:origin: com.github.veithen.cosmos.bootstrap/org.eclipse.equinox.common

/**
 * Simplified constructor of a new status object; assumes that code is <code>OK</code>.
 * The created status has no children.
 *
 * @param severity the severity; one of <code>OK</code>, <code>ERROR</code>, 
 * <code>INFO</code>, <code>WARNING</code>,  or <code>CANCEL</code>
 * @param pluginId the unique identifier of the relevant plug-in
 * @param message a human-readable message, localized to the
 *    current locale
 * @param exception a low-level exception, or <code>null</code> if not
 *    applicable
 *     
 * @since org.eclipse.equinox.common 3.3
 */
public Status(int severity, String pluginId, String message, Throwable exception) {
  setSeverity(severity);
  setPlugin(pluginId);
  setMessage(message);
  setException(exception);
  setCode(OK);
}

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

/**
 * Simplified constructor of a new status object; assumes that code is <code>OK</code>.
 * The created status has no children.
 *
 * @param severity the severity; one of <code>OK</code>, <code>ERROR</code>, 
 * <code>INFO</code>, <code>WARNING</code>,  or <code>CANCEL</code>
 * @param pluginId the unique identifier of the relevant plug-in
 * @param message a human-readable message, localized to the
 *    current locale
 * @param exception a low-level exception, or <code>null</code> if not
 *    applicable
 *     
 * @since org.eclipse.equinox.common 3.3
 */
public Status(int severity, String pluginId, String message, Throwable exception) {
  setSeverity(severity);
  setPlugin(pluginId);
  setMessage(message);
  setException(exception);
  setCode(OK);
}

相关文章