1 11 package org.eclipse.team.core.subscribers; 12 import org.eclipse.core.resources.IResource; 13 14 23 public interface ISubscriberChangeEvent { 24 27 31 public static final int NO_CHANGE = 0; 32 36 public static final int SYNC_CHANGED = 0x1; 37 41 public static final int ROOT_ADDED = 0x2; 42 46 public static final int ROOT_REMOVED = 0x4; 47 48 60 public abstract int getFlags(); 61 62 68 public abstract IResource getResource(); 69 70 74 public abstract Subscriber getSubscriber(); 75 } 76 | Popular Tags |