1 11 package org.eclipse.debug.internal.ui; 12 13 14 import org.eclipse.debug.core.model.IStackFrame; 15 import org.eclipse.swt.graphics.Image; 16 17 20 public class InstructionPointerAnnotation extends DynamicInstructionPointerAnnotation { 21 22 25 private Image fImage; 26 27 35 public InstructionPointerAnnotation(IStackFrame frame, String annotationType, String text, Image image) { 36 super(frame, annotationType, text); 37 fImage = image; 38 } 39 40 45 protected Image getImage() { 46 return fImage; 47 } 48 49 } 50 | Popular Tags |