1 11 package org.eclipse.core.resources; 12 13 import org.eclipse.core.runtime.IPath; 14 15 30 public interface ISaveContext { 31 32 35 36 41 public static final int FULL_SAVE = 1; 42 43 48 public static final int SNAPSHOT = 2; 49 50 55 public static final int PROJECT_SAVE = 3; 56 57 65 public IPath[] getFiles(); 66 67 77 public int getKind(); 78 79 92 public int getPreviousSaveNumber(); 93 94 103 public IProject getProject(); 104 105 117 public int getSaveNumber(); 118 119 127 public IPath lookup(IPath file); 128 129 154 public void map(IPath file, IPath location); 155 156 178 public void needDelta(); 179 180 197 public void needSaveNumber(); 198 } 199 | Popular Tags |