blob: 6c52e4a95d189e1baba4c7d4f4394304218b7384 [file] [log] [blame]
/*
* (c) Copyright IBM Corp. 2000, 2001, 2002.
* All Rights Reserved.
*/
package org.eclipse.jdt.internal.debug.eval.ast.instructions;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.jdt.debug.core.IJavaPrimitiveValue;
import org.eclipse.jdt.debug.core.IJavaValue;
import org.eclipse.jdt.debug.core.IJavaVariable;
public class AssignmentOperator extends CompoundInstruction {
protected int fVariableTypeId;
protected int fValueTypeId;
public AssignmentOperator(int variableTypeId, int valueTypeId, int start) {
super(start);
fVariableTypeId = variableTypeId;
fValueTypeId = valueTypeId;
}
/*
* @see Instruction#execute()
*/
public void execute() throws CoreException {
IJavaValue value = (IJavaValue) popValue();
IJavaVariable variable = (IJavaVariable) pop();
if (value instanceof IJavaPrimitiveValue) {
IJavaPrimitiveValue primitiveValue = (IJavaPrimitiveValue) value;
switch (fVariableTypeId) {
case T_boolean:
variable.setValue(newValue(primitiveValue.getBooleanValue()));
break;
case T_byte:
variable.setValue(newValue(primitiveValue.getByteValue()));
break;
case T_short:
variable.setValue(newValue(primitiveValue.getShortValue()));
break;
case T_char:
variable.setValue(newValue(primitiveValue.getCharValue()));
break;
case T_int:
variable.setValue(newValue(primitiveValue.getIntValue()));
break;
case T_long:
variable.setValue(newValue(primitiveValue.getLongValue()));
break;
case T_float:
variable.setValue(newValue(primitiveValue.getFloatValue()));
break;
case T_double:
variable.setValue(newValue(primitiveValue.getDoubleValue()));
break;
}
} else {
variable.setValue(value);
}
push(variable.getValue());
}
public String toString() {
return InstructionsEvaluationMessages.getString("AssignmentOperator._=___operator_1"); //$NON-NLS-1$
}
}