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


Java XValuePlace类代码示例

本文整理汇总了Java中com.intellij.xdebugger.frame.XValuePlace的典型用法代码示例。如果您正苦于以下问题:Java XValuePlace类的具体用法?Java XValuePlace怎么用?Java XValuePlace使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


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

示例1: computePresentation

import com.intellij.xdebugger.frame.XValuePlace; //导入依赖的package包/类
@Override
public void computePresentation(@NotNull XValueNode node, @NotNull XValuePlace place)
{
    ClassRenderer classRenderer = NodeRendererSettings.getInstance().getClassRenderer();
    String type = classRenderer.renderTypeName(myType);
    Icon icon = myVarType == VariableItem.VarType.PARAM ? PlatformIcons.PARAMETER_ICON : AllIcons.Debugger.Value;
    if(myType != null && myType.startsWith(CommonClassNames.JAVA_LANG_STRING + "@"))
    {
        node.setPresentation(icon, new XStringValuePresentation(myValue)
        {
            @Nullable
            @Override
            public String getType()
            {
                return classRenderer.SHOW_STRINGS_TYPE ? type : null;
            }
        }, false);
        return;
    }
    node.setPresentation(icon, type, myValue, false);
}
 
开发者ID:consulo,项目名称:consulo-java,代码行数:22,代码来源:StackFrameItem.java

示例2: computePresentation

import com.intellij.xdebugger.frame.XValuePlace; //导入依赖的package包/类
@Override
public void computePresentation(@NotNull XValueNode node, @NotNull XValuePlace place)
{
    node.setPresentation(myIcon, new XValuePresentation()
    {
        @NotNull
        @Override
        public String getSeparator()
        {
            return "";
        }

        @Override
        public void renderValue(@NotNull XValueTextRenderer renderer)
        {
            renderer.renderValue(myMessage);
        }
    }, false);
}
 
开发者ID:consulo,项目名称:consulo-java,代码行数:20,代码来源:JavaStackFrame.java

示例3: createFullValueEvaluator

import com.intellij.xdebugger.frame.XValuePlace; //导入依赖的package包/类
static XFullValueEvaluator createFullValueEvaluator(String text)
{
    return new XFullValueEvaluator(text)
    {
        @Override
        public void startEvaluation(@NotNull XFullValueEvaluationCallback callback)
        {
            if(callback instanceof HeadlessValueEvaluationCallback)
            {
                XValueNodeImpl node = ((HeadlessValueEvaluationCallback) callback).getNode();
                node.clearFullValueEvaluator();
                setCalculated(((JavaValue) node.getValueContainer()).getDescriptor());
                node.getValueContainer().computePresentation(node, XValuePlace.TREE);
            }
            callback.evaluated("");
        }
    }.setShowValuePopup(false);
}
 
开发者ID:consulo,项目名称:consulo-java,代码行数:19,代码来源:OnDemandRenderer.java

示例4: computePresentation

import com.intellij.xdebugger.frame.XValuePlace; //导入依赖的package包/类
@Override
public void computePresentation(@NotNull XValueNode xValueNode, @NotNull XValuePlace xValuePlace)
{
    //Lets make sure if it is null to be a string
    final String presentationValue = String.valueOf(debuggerValue.value());
    xValueNode.setPresentation(PlatformIcons.VARIABLE_ICON, debuggerValue.typeName(), presentationValue, false);
}
 
开发者ID:machaval,项目名称:mule-intellij-plugins,代码行数:8,代码来源:SimpleWeaveValue.java

示例5: rebuildAndRestore

import com.intellij.xdebugger.frame.XValuePlace; //导入依赖的package包/类
public void rebuildAndRestore(final XDebuggerTreeState treeState) {
  Object rootNode = myTreeModel.getRoot();
  if (rootNode instanceof XDebuggerTreeNode) {
    ((XDebuggerTreeNode)rootNode).clearChildren();
    if (isRootVisible() && rootNode instanceof XValueNodeImpl) {
      ((XValueNodeImpl)rootNode).getValueContainer().computePresentation((XValueNode)rootNode, XValuePlace.TREE);
    }
    treeState.restoreState(this);
    repaint();
  }
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:12,代码来源:XDebuggerTree.java

示例6: computePresentation

import com.intellij.xdebugger.frame.XValuePlace; //导入依赖的package包/类
@Override
public void computePresentation(@NotNull XValueNode node, @NotNull XValuePlace place) {
  String status = BreakpointUtil.getUserMessage(variable.getStatus());
  String value =
      !Strings.isNullOrEmpty(status)
          ? String.format("%s (%s)", variable.getValue(), status)
          : variable.getValue();
  node.setPresentation(
      null,
      members != null && members.size() > 0 ? "..." : null,
      value != null ? value : "",
      members != null && members.size() > 0);
}
 
开发者ID:GoogleCloudPlatform,项目名称:google-cloud-intellij,代码行数:14,代码来源:CloudStackFrame.java

示例7: computePresentation

import com.intellij.xdebugger.frame.XValuePlace; //导入依赖的package包/类
@Override
public void computePresentation(@NotNull XValueNode node, @NotNull XValuePlace place) {
    Icon icon = root ? PlatformIcons.VARIABLE_ICON : PlatformIcons.FIELD_ICON;
    String representation = innerValue.getRepresentation();
    if (representation == null) {
        representation = "null";
    }
    if (Objects.equals(innerValue.getType(), "java.lang.String")) {
        representation = getStringRepresentation();
    }
    node.setPresentation(icon, innerValue.getType(), representation, !innerValue.getProperties().isEmpty());
}
 
开发者ID:konsoletyper,项目名称:teavm,代码行数:13,代码来源:TeaVMValue.java

示例8: computePresentation

import com.intellij.xdebugger.frame.XValuePlace; //导入依赖的package包/类
@Override
public void computePresentation(@NotNull XValueNode node, @NotNull XValuePlace place) {
    Icon icon = root ? PlatformIcons.VARIABLE_ICON : PlatformIcons.FIELD_ICON;
    String representation = innerValue.getRepresentation();
    if (representation == null) {
        representation = "null";
    }
    node.setPresentation(icon, innerValue.getClassName(), representation, !innerValue.getProperties().isEmpty());
}
 
开发者ID:konsoletyper,项目名称:teavm,代码行数:10,代码来源:TeaVMOriginalValue.java

示例9: computePresentationImpl

import com.intellij.xdebugger.frame.XValuePlace; //导入依赖的package包/类
protected void computePresentationImpl(@NotNull XValueNode xValueNode, @NotNull XValuePlace xValuePlace)
{
    DotNetValueProxy valueOfVariable = getValueOfVariable();

    myLastValueRef.set(valueOfVariable);

    xValueNode.setPresentation(getIconForVariable(Ref.create(valueOfVariable)), new DotNetValuePresentation(myDebugContext, myFrameProxy, valueOfVariable), canHaveChildren(valueOfVariable));
}
 
开发者ID:consulo,项目名称:consulo-dotnet,代码行数:9,代码来源:DotNetAbstractVariableValueNode.java

示例10: computePresentationImpl

import com.intellij.xdebugger.frame.XValuePlace; //导入依赖的package包/类
@Override
protected void computePresentationImpl(@NotNull XValueNode xValueNode, @NotNull XValuePlace xValuePlace)
{
    if(myObjectValueMirrorGetter == null)
    {
        xValueNode.setPresentation(getIconForVariable(null), new XRegularValuePresentation("", null, ""), true);
    }
    else
    {
        super.computePresentationImpl(xValueNode, xValuePlace);
    }
}
 
开发者ID:consulo,项目名称:consulo-dotnet,代码行数:13,代码来源:DotNetThisAsObjectValueNode.java

示例11: computePresentation

import com.intellij.xdebugger.frame.XValuePlace; //导入依赖的package包/类
@Override
public void computePresentation(@NotNull XValueNode node, @NotNull XValuePlace place)
{
    final Debugger.Variable.Kind kind = myVariable.getKind();
    Icon icon = null;
    if(myVariable.isGlobal())
    {
        if(kind == Debugger.Variable.Kind.VARIABLE)
        {
            icon = PlatformIcons.FIELD_ICON;
        }
        else
        {
            icon = PlatformIcons.PROPERTY_ICON;
        }
    }
    else if(kind == Debugger.Variable.Kind.VARIABLE)
    {
        icon = PlatformIcons.VARIABLE_ICON;
    }
    else if(kind == Debugger.Variable.Kind.PARAMETER)
    {
        icon = PlatformIcons.PARAMETER_ICON;
    }

    final Value v = myVariable.getValue();
    if(v.getType() == Value.XPathType.STRING)
    {
        node.setPresentation(icon, v.getType().getName(), "'" + String.valueOf(v.getValue()) + "'", false);
    }
    else
    {
        final boolean hasChildren = myVariable.getValue().getValue() instanceof Value.NodeSet;
        node.setPresentation(icon, v.getType().getName(), String.valueOf(v.getValue()), hasChildren);
    }
}
 
开发者ID:consulo,项目名称:consulo-xslt,代码行数:37,代码来源:XsltStackFrame.java

示例12: computePresentation

import com.intellij.xdebugger.frame.XValuePlace; //导入依赖的package包/类
@Override
public void computePresentation(@NotNull XValueNode xValueNode, @NotNull XValuePlace xValuePlace)
{
    xValueNode.setPresentation(PlatformIcons.FUNCTION_ICON, null, debuggerValue.name(), true);
}
 
开发者ID:machaval,项目名称:mule-intellij-plugins,代码行数:6,代码来源:OperatorWeaveValue.java

示例13: computePresentation

import com.intellij.xdebugger.frame.XValuePlace; //导入依赖的package包/类
@Override
public void computePresentation(@NotNull XValueNode xValueNode, @NotNull XValuePlace xValuePlace)
{
    xValueNode.setPresentation(PlatformIcons.VARIABLE_ICON, "", "", true);
}
 
开发者ID:machaval,项目名称:mule-intellij-plugins,代码行数:6,代码来源:FieldWeaveValue.java

示例14: computePresentation

import com.intellij.xdebugger.frame.XValuePlace; //导入依赖的package包/类
@Override
public void computePresentation(@NotNull XValueNode xValueNode, @NotNull XValuePlace xValuePlace)
{
    xValueNode.setPresentation(PlatformIcons.VARIABLE_ICON, "Array", "length : " + debuggerValue.values().length, true);
}
 
开发者ID:machaval,项目名称:mule-intellij-plugins,代码行数:6,代码来源:ArrayWeaveValue.java

示例15: computePresentation

import com.intellij.xdebugger.frame.XValuePlace; //导入依赖的package包/类
@Override
public void computePresentation(@NotNull XValueNode xValueNode, @NotNull XValuePlace xValuePlace)
{
    xValueNode.setPresentation(PlatformIcons.FUNCTION_ICON, null, "Function", true);
}
 
开发者ID:machaval,项目名称:mule-intellij-plugins,代码行数:6,代码来源:FunctionWeaveValue.java


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