1 11 12 package org.eclipse.ui; 13 14 import org.eclipse.core.runtime.IProgressMonitor; 15 16 24 public interface ISaveablePart { 25 26 29 public static final int PROP_DIRTY = IWorkbenchPartConstants.PROP_DIRTY; 30 31 49 public void doSave(IProgressMonitor monitor); 50 51 64 public void doSaveAs(); 65 66 80 public boolean isDirty(); 81 82 88 public boolean isSaveAsAllowed(); 89 90 97 public boolean isSaveOnCloseNeeded(); 98 } 99 | Popular Tags |