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