Package org.eclipse.php.internal.debug.core.xdebug.dbgp.model

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

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

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.