blob: 119e87996d5a7352aa9cfb1f97074084fedd4452 [file] [log] [blame]
package org.eclipse.dltk.internal.ui.editor;
import org.eclipse.dltk.core.ISourceModule;
public interface ISavePolicy {
/**
*
*/
void preSave(ISourceModule unit);
/**
* Returns the compilation unit in which the argument
* has been changed. If the argument is not changed, the
* returned result is <code>null</code>.
*/
ISourceModule postSave(ISourceModule unit);
}