Package org.eclipse.jdt.internal.debug.core.model

Examples of org.eclipse.jdt.internal.debug.core.model.JDIValue


          ignoreVar(jvar))
      {
        continue;
      }

      JDIValue value = (JDIValue) var.getValue();
      boolean isLeafNode = !((value != null) &&
        (value instanceof IJavaObject) &&
        value.hasVariables());

      // Treat String as leaf node even though it has child variables
      isLeafNode = isLeafNode || ViewUtils.isStringValue(value);

      String prefix = getIndentation(depth, isLeafNode);
View Full Code Here


   */
  private boolean ignoreVar(JDIVariable var)
    throws DebugException
  {
    if (var.isFinal()) {
      JDIValue value = (JDIValue) var.getValue();
      if (value instanceof IJavaObject) {
        return false;
      } else {
        return true;
      }
View Full Code Here

TOP

Related Classes of org.eclipse.jdt.internal.debug.core.model.JDIValue

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.