-/*
- * Created on 23.11.2004
+ /* Created on 23.11.2004
*
* TODO To change the template for this generated file go to
* Window - Preferences - Java - Code Style - Code Templates
import net.sourceforge.phpeclipse.xdebug.core.Base64;
import net.sourceforge.phpeclipse.xdebug.core.PHPDebugUtils;
+import org.eclipse.debug.core.DebugEvent;
import org.eclipse.debug.core.DebugException;
import org.eclipse.debug.core.model.IValue;
import org.eclipse.debug.core.model.IVariable;
NumChildren = Integer.parseInt(PHPDebugUtils.getAttributeValue(varNode, "numchildren"));
}
- NodeList property = varNode.getChildNodes();
if (NumChildren > 0) {
+ NodeList property = varNode.getChildNodes();
renderValueString(""+property.getLength());
fVariables = new IVariable[property.getLength()];
for (int i = 0; i<property.getLength(); i++) {
} catch (NullPointerException e) {
str="";
}
-
-
+
String Encoding = PHPDebugUtils.getAttributeValue(varNode,"encoding");
if (Encoding.equals("base64")) {
public abstract boolean verifyValue(String expression);
public boolean setValue(String expression) {
- if (!verifyValue(expression))
+ if (!verifyValue(expression)) {
return false;
- if( getDebugTarget() == null ) {
- renderValueString(expression);
- } else {
- /* if(((XDebugTarget) getDebugTarget()).setVarValue(fVariable.getFullName(),expression)) {
- renderValueString(expression);
- return true;
- }*/
- }
- return false;
+ }
+
+ renderValueString(expression);
+ fireEvent(new DebugEvent(this, DebugEvent.CHANGE, DebugEvent.CONTENT));
+
+ return true;
}
public boolean supportsValueModification() {