1 11 package org.eclipse.debug.ui; 12 13 import org.eclipse.debug.core.model.IStackFrame; 14 import org.eclipse.jface.text.source.Annotation; 15 import org.eclipse.swt.graphics.Image; 16 import org.eclipse.ui.IEditorPart; 17 18 57 public interface IInstructionPointerPresentation extends IDebugModelPresentation { 58 67 public Annotation getInstructionPointerAnnotation(IEditorPart editorPart, IStackFrame frame); 68 69 79 public String getInstructionPointerAnnotationType(IEditorPart editorPart, IStackFrame frame); 80 81 93 public Image getInstructionPointerImage(IEditorPart editorPart, IStackFrame frame); 94 95 108 public String getInstructionPointerText(IEditorPart editorPart, IStackFrame frame); 109 } 110 | Popular Tags |