Examples of DBGpStringValue


Examples of org.eclipse.php.internal.debug.core.xdebug.dbgp.model.DBGpStringValue

  private String getValueString(IVariable variable) throws DebugException {
    IValue value = variable.getValue();
    String initialValue = value.getValueString();

    if (value instanceof DBGpStringValue) {
      DBGpStringValue strValue = (DBGpStringValue) value;
      if (strValue.isComplete() == false) {
        DBGpTarget target = (DBGpTarget) value.getDebugTarget();
        DBGpVariable dbgpVar = (DBGpVariable) variable;
        String stackLevel = dbgpVar.getStackLevel();
        Node result = target.getCompleteString(dbgpVar.getFullName(),
            stackLevel, strValue.getRequiredBytes());
        if (result != null) {
          IVariable tempVar = new DBGpVariable(target, result,
              stackLevel);
          IValue valRes = null;
          try {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.