1 11 package org.eclipse.jdt.internal.debug.eval.ast.instructions; 12 13 import org.eclipse.core.runtime.CoreException; 14 import org.eclipse.jdt.debug.core.IJavaType; 15 16 19 public class PushClassLiteralValue extends CompoundInstruction { 20 public PushClassLiteralValue(int start) { 21 super(start); 22 } 23 24 27 public void execute() throws CoreException { 28 IJavaType type = (IJavaType)pop(); 29 push(getClassObject(type)); 30 } 31 32 35 public String toString() { 36 return InstructionsEvaluationMessages.PushClassLiteralValue_push_class_literal_value_1; 37 } 38 39 } 40 | Popular Tags |