当前位置: 首页>>代码示例>>Java>>正文


Java DebuggerUtils.instanceOf方法代码示例

本文整理汇总了Java中com.intellij.debugger.engine.DebuggerUtils.instanceOf方法的典型用法代码示例。如果您正苦于以下问题:Java DebuggerUtils.instanceOf方法的具体用法?Java DebuggerUtils.instanceOf怎么用?Java DebuggerUtils.instanceOf使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.intellij.debugger.engine.DebuggerUtils的用法示例。


在下文中一共展示了DebuggerUtils.instanceOf方法的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: evaluate

import com.intellij.debugger.engine.DebuggerUtils; //导入方法依赖的package包/类
@Override
public Object evaluate(EvaluationContextImpl context) throws EvaluateException
{
	Object result = context.getSuspendContext().getDebugProcess().getVirtualMachineProxy().mirrorOfVoid();
	try
	{
		result = myBodyEvaluator.evaluate(context);
	}
	catch(EvaluateException e)
	{
		boolean catched = false;
		ObjectReference vmException = e.getExceptionFromTargetVM();
		if(vmException != null)
		{
			for(CatchEvaluator evaluator : myCatchBlockEvaluators)
			{
				if(evaluator != null && DebuggerUtils.instanceOf(vmException.type(), evaluator.getExceptionType()))
				{
					result = evaluator.evaluate(vmException, context);
					catched = true;
					break;
				}
			}
		}
		if(!catched)
		{
			throw e;
		}
	}
	finally
	{
		if(myFinallyEvaluator != null)
		{
			result = myFinallyEvaluator.evaluate(context);
		}
	}
	return result;
}
 
开发者ID:consulo,项目名称:consulo-java,代码行数:39,代码来源:TryEvaluator.java

示例2: isFiltered

import com.intellij.debugger.engine.DebuggerUtils; //导入方法依赖的package包/类
private boolean isFiltered(Type t)
{
	if(t instanceof ReferenceType)
	{
		for(ClassFilter classFilter : myClassFilters)
		{
			if(classFilter.isEnabled() && DebuggerUtils.instanceOf(t, classFilter.getPattern()))
			{
				return true;
			}
		}
	}
	return DebuggerUtilsEx.isFiltered(t.name(), myClassFilters);
}
 
开发者ID:consulo,项目名称:consulo-java,代码行数:15,代码来源:ToStringRenderer.java

示例3: isApplicable

import com.intellij.debugger.engine.DebuggerUtils; //导入方法依赖的package包/类
public boolean isApplicable(Type type)
{
	if(DebuggerUtils.instanceOf(type, getClassName()))
	{
		return super.isApplicable(type);
	}
	return false;
}
 
开发者ID:consulo,项目名称:consulo-java,代码行数:9,代码来源:CompoundTypeRenderer.java

示例4: evaluate

import com.intellij.debugger.engine.DebuggerUtils; //导入方法依赖的package包/类
public Object evaluate(EvaluationContextImpl context) throws EvaluateException {
  Value value = (Value)myOperandEvaluator.evaluate(context);
  if (value == null) {
    if (myIsPrimitive) {
      throw EvaluateExceptionUtil.createEvaluateException(DebuggerBundle.message("evaluation.error.cannot.cast.null", myCastType));
    }
    return null;
  }
  VirtualMachineProxyImpl vm = context.getDebugProcess().getVirtualMachineProxy();
  if (DebuggerUtils.isInteger(value)) {
    value = DebuggerUtilsEx.createValue(vm, myCastType, ((PrimitiveValue)value).longValue());
    if (value == null) {
      throw EvaluateExceptionUtil.createEvaluateException(DebuggerBundle.message("evaluation.error.cannot.cast.numeric", myCastType));
    }
  }
  else if (DebuggerUtils.isNumeric(value)) {
    value = DebuggerUtilsEx.createValue(vm, myCastType, ((PrimitiveValue)value).doubleValue());
    if (value == null) {
      throw EvaluateExceptionUtil.createEvaluateException(DebuggerBundle.message("evaluation.error.cannot.cast.numeric", myCastType));
    }
  }
  else if (value instanceof BooleanValue) {
    value = DebuggerUtilsEx.createValue(vm, myCastType, ((BooleanValue)value).booleanValue());
    if (value == null) {
      throw EvaluateExceptionUtil.createEvaluateException(DebuggerBundle.message("evaluation.error.cannot.cast.boolean", myCastType));
    }
  }
  else if (value instanceof CharValue) {
    value = DebuggerUtilsEx.createValue(vm, myCastType, ((CharValue)value).charValue());
    if (value == null) {
      throw EvaluateExceptionUtil.createEvaluateException(DebuggerBundle.message("evaluation.error.cannot.cast.char", myCastType));
    }
  }
  else if (value instanceof ObjectReference) {
    Type type = value.type();
    if (!DebuggerUtils.instanceOf(type, myCastType)) {
      throw EvaluateExceptionUtil.createEvaluateException(DebuggerBundle.message("evaluation.error.cannot.cast.object", type.name(), myCastType));
    }
  }

  return value;
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:43,代码来源:TypeCastEvaluator.java

示例5: isApplicable

import com.intellij.debugger.engine.DebuggerUtils; //导入方法依赖的package包/类
public boolean isApplicable(Type type) {
  if(type == null || !(type instanceof ReferenceType) || !DebuggerUtils.instanceOf(type, getClassName())) {
    return false;
  }
  return super.isApplicable(type);
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:7,代码来源:CompoundReferenceRenderer.java

示例6: isApplicable

import com.intellij.debugger.engine.DebuggerUtils; //导入方法依赖的package包/类
public boolean isApplicable(Type type) {
  return type != null && type instanceof ReferenceType && DebuggerUtils.instanceOf(type, getClassName());
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:4,代码来源:ReferenceRenderer.java

示例7: isApplicable

import com.intellij.debugger.engine.DebuggerUtils; //导入方法依赖的package包/类
@Override
public boolean isApplicable(Type type) {
  return type instanceof ReferenceType && DebuggerUtils.instanceOf(type, GroovyCommonClassNames.GROOVY_LANG_REFERENCE);
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:5,代码来源:GroovyRefRenderer.java

示例8: isApplicable

import com.intellij.debugger.engine.DebuggerUtils; //导入方法依赖的package包/类
@Override
public boolean isApplicable(Type type)
{
	return DebuggerUtils.instanceOf(type, getClassName());
}
 
开发者ID:consulo,项目名称:consulo-java,代码行数:6,代码来源:TypeRenderer.java

示例9: isApplicable

import com.intellij.debugger.engine.DebuggerUtils; //导入方法依赖的package包/类
public boolean isApplicable(Type type)
{
	return type instanceof ReferenceType && DebuggerUtils.instanceOf(type, getClassName());
}
 
开发者ID:consulo,项目名称:consulo-java,代码行数:5,代码来源:ReferenceRenderer.java


注:本文中的com.intellij.debugger.engine.DebuggerUtils.instanceOf方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。