1 11 package org.eclipse.core.resources; 12 13 import org.eclipse.core.runtime.IProgressMonitor; 14 15 88 public interface IResourceChangeEvent { 89 99 public static final int POST_CHANGE = 1; 100 101 110 public static final int PRE_CLOSE = 2; 111 112 121 public static final int PRE_DELETE = 4; 122 123 127 public static final int PRE_AUTO_BUILD = 8; 128 129 140 public static final int PRE_BUILD = 8; 141 142 146 public static final int POST_AUTO_BUILD = 16; 147 148 159 public static final int POST_BUILD = 16; 160 161 178 public IMarkerDelta[] findMarkerDeltas(String type, boolean includeSubtypes); 179 180 197 public int getBuildKind(); 198 199 207 public IResourceDelta getDelta(); 208 209 220 public IResource getResource(); 221 222 232 public Object getSource(); 233 234 244 public int getType(); 245 } 246 | Popular Tags |