1 11 package org.eclipse.jdt.internal.debug.eval.ast.instructions; 12 13 14 17 public class PushBoolean extends SimpleInstruction { 18 private boolean fValue; 19 20 public PushBoolean(boolean value) { 21 fValue= value; 22 } 23 24 public void execute() { 25 pushNewValue(fValue); 26 } 27 28 public String toString() { 29 return InstructionsEvaluationMessages.PushBoolean_push__1 + fValue; 30 } 31 } 32 33 | Popular Tags |