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

x33g5p2x  于2022-01-26 转载在 其他  
字(7.2k)|赞(0)|评价(0)|浏览(105)

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

Plugin.getDebugOptions介绍

[英]Returns the DebugOptions instance
[中]返回DebugOptions实例

代码示例

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

/**
 * Sets whether this plug-in is in debug mode.
 * By default plug-ins are not in debug mode.  A plug-in can put itself
 * into debug mode or the user can set a debug option to do so.
 * <p>
 * Note that the plug-in's debug flag is initialized when the 
 * plug-in is started. The result of calling this method before the plug-in
 * has started is unspecified.
 * </p>
 *
 * @param value whether or not this plug-in is in debug mode
 * XXX deprecate use the service and cache as needed
 */
public void setDebugging(boolean value) {
  Bundle debugBundle = getBundle();
  if (debugBundle == null) {
    this.debug = value;
    return;
  }
  String key = debugBundle.getSymbolicName() + "/debug"; //$NON-NLS-1$
  final DebugOptions options = getDebugOptions();
  if (options == null)
    this.debug = value;
  else {
    if (!options.isDebugEnabled())
      options.setDebugEnabled(true);
    options.setOption(key, value ? Boolean.TRUE.toString() : Boolean.FALSE.toString());
  }
}

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

/**
 * Returns whether this plug-in is in debug mode.
 * By default plug-ins are not in debug mode.  A plug-in can put itself
 * into debug mode or the user can set an execution option to do so.
 * <p>
 * Note that the plug-in's debug flag is initialized when the 
 * plug-in is started. The result of calling this method before the plug-in
 * has started is unspecified.
 * </p>
 *
 * @return whether this plug-in is in debug mode
 * XXX deprecate use the service and cache as needed
 */
public boolean isDebugging() {
  Bundle debugBundle = getBundle();
  if (debugBundle == null)
    return debug;
  String key = debugBundle.getSymbolicName() + "/debug"; //$NON-NLS-1$
  // first check if platform debugging is enabled
  final DebugOptions debugOptions = getDebugOptions();
  if (debugOptions == null)
    return debug;
  // if platform debugging is enabled, check to see if this plugin is enabled for debugging
  return debugOptions.isDebugEnabled() ? InternalPlatform.getDefault().getBooleanOption(key, false) : false;
}

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

/**
 * Sets whether this plug-in is in debug mode.
 * By default plug-ins are not in debug mode.  A plug-in can put itself
 * into debug mode or the user can set a debug option to do so.
 * <p>
 * Note that the plug-in's debug flag is initialized when the 
 * plug-in is started. The result of calling this method before the plug-in
 * has started is unspecified.
 * </p>
 *
 * @param value whether or not this plug-in is in debug mode
 * XXX deprecate use the service and cache as needed
 */
public void setDebugging(boolean value) {
  if (bundle == null)
    this.debug = value;
  String key = bundle.getSymbolicName() + "/debug"; //$NON-NLS-1$
  final DebugOptions options = getDebugOptions();
  if (options == null)
    this.debug = value;
  else
    options.setOption(key, value ? Boolean.TRUE.toString() : Boolean.FALSE.toString());
}

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

/**
 * Sets whether this plug-in is in debug mode.
 * By default plug-ins are not in debug mode.  A plug-in can put itself
 * into debug mode or the user can set a debug option to do so.
 * <p>
 * Note that the plug-in's debug flag is initialized when the 
 * plug-in is started. The result of calling this method before the plug-in
 * has started is unspecified.
 * </p>
 *
 * @param value whether or not this plug-in is in debug mode
 * XXX deprecate use the service and cache as needed
 */
public void setDebugging(boolean value) {
  if (bundle == null) {
    this.debug = value;
    return;
  }
  String key = bundle.getSymbolicName() + "/debug"; //$NON-NLS-1$
  final DebugOptions options = getDebugOptions();
  if (options == null)
    this.debug = value;
  else {
    if (!options.isDebugEnabled())
      options.setDebugEnabled(true);
    options.setOption(key, value ? Boolean.TRUE.toString() : Boolean.FALSE.toString());
  }
}

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

/**
 * Returns whether this plug-in is in debug mode.
 * By default plug-ins are not in debug mode.  A plug-in can put itself
 * into debug mode or the user can set an execution option to do so.
 * <p>
 * Note that the plug-in's debug flag is initialized when the 
 * plug-in is started. The result of calling this method before the plug-in
 * has started is unspecified.
 * </p>
 *
 * @return whether this plug-in is in debug mode
 * XXX deprecate use the service and cache as needed
 */
public boolean isDebugging() {
  if (bundle == null)
    return debug;
  String key = bundle.getSymbolicName() + "/debug"; //$NON-NLS-1$
  // first check if platform debugging is enabled
  final DebugOptions debugOptions = getDebugOptions();
  if (debugOptions == null)
    return debug;
  // if platform debugging is enabled, check to see if this plugin is enabled for debugging
  return debugOptions.isDebugEnabled() ? InternalPlatform.getDefault().getBooleanOption(key, false) : false;
}

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

/**
 * Returns whether this plug-in is in debug mode.
 * By default plug-ins are not in debug mode.  A plug-in can put itself
 * into debug mode or the user can set an execution option to do so.
 * <p>
 * Note that the plug-in's debug flag is initialized when the 
 * plug-in is started. The result of calling this method before the plug-in
 * has started is unspecified.
 * </p>
 *
 * @return whether this plug-in is in debug mode
 * XXX deprecate use the service and cache as needed
 */
public boolean isDebugging() {
  if (bundle == null)
    return debug;
  String key = bundle.getSymbolicName() + "/debug"; //$NON-NLS-1$
  // first check if platform debugging is enabled
  final DebugOptions debugOptions = getDebugOptions();
  if (debugOptions == null)
    return debug;
  // if platform debugging is enabled, check to see if this plugin is enabled for debugging
  return debugOptions.isDebugEnabled() ? InternalPlatform.getDefault().getBooleanOption(key, false) : false;
}

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

/**
 * Sets whether this plug-in is in debug mode.
 * By default plug-ins are not in debug mode.  A plug-in can put itself
 * into debug mode or the user can set a debug option to do so.
 * <p>
 * Note that the plug-in's debug flag is initialized when the
 * plug-in is started. The result of calling this method before the plug-in
 * has started is unspecified.
 * </p>
 *
 * @param value whether or not this plug-in is in debug mode
 * XXX deprecate use the service and cache as needed
 */
public void setDebugging(boolean value) {
  Bundle debugBundle = getBundle();
  if (debugBundle == null) {
    this.debug = value;
    return;
  }
  String key = debugBundle.getSymbolicName() + "/debug"; //$NON-NLS-1$
  final DebugOptions options = getDebugOptions();
  if (options == null)
    this.debug = value;
  else {
    if (!options.isDebugEnabled())
      options.setDebugEnabled(true);
    options.setOption(key, value ? Boolean.TRUE.toString() : Boolean.FALSE.toString());
  }
}

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

/**
 * Returns whether this plug-in is in debug mode.
 * By default plug-ins are not in debug mode.  A plug-in can put itself
 * into debug mode or the user can set an execution option to do so.
 * <p>
 * Note that the plug-in's debug flag is initialized when the
 * plug-in is started. The result of calling this method before the plug-in
 * has started is unspecified.
 * </p>
 *
 * @return whether this plug-in is in debug mode
 * XXX deprecate use the service and cache as needed
 */
public boolean isDebugging() {
  Bundle debugBundle = getBundle();
  if (debugBundle == null)
    return debug;
  String key = debugBundle.getSymbolicName() + "/debug"; //$NON-NLS-1$
  // first check if platform debugging is enabled
  final DebugOptions debugOptions = getDebugOptions();
  if (debugOptions == null)
    return debug;
  // if platform debugging is enabled, check to see if this plugin is enabled for debugging
  return debugOptions.isDebugEnabled() ? InternalPlatform.getDefault().getBooleanOption(key, false) : false;
}

相关文章