1 11 package org.eclipse.debug.ui; 12 13 import org.eclipse.debug.core.model.IStackFrame; 14 import org.eclipse.debug.core.model.IThread; 15 import org.eclipse.ui.IEditorPart; 16 17 24 public interface IDebugEditorPresentation { 25 39 public boolean addAnnotations(IEditorPart editorPart, IStackFrame frame); 40 41 52 public void removeAnnotations(IEditorPart editorPart, IThread thread); 53 } 54 | Popular Tags |