1 11 12 package org.eclipse.ui; 13 14 51 public interface IEditorPart extends IWorkbenchPart, ISaveablePart { 52 53 56 public static final int PROP_DIRTY = IWorkbenchPartConstants.PROP_DIRTY; 57 58 61 public static final int PROP_INPUT = IWorkbenchPartConstants.PROP_INPUT; 62 63 69 public IEditorInput getEditorInput(); 70 71 83 public IEditorSite getEditorSite(); 84 85 101 public void init(IEditorSite site, IEditorInput input) 102 throws PartInitException; 103 } 104 | Popular Tags |