1 11 package org.eclipse.team.core; 12 13 import org.eclipse.core.resources.IResource; 14 import org.eclipse.core.runtime.IStatus; 15 16 21 public interface ITeamStatus extends IStatus { 22 23 28 public static final int RESOURCE_SYNC_INFO_ERROR = 1; 29 30 34 public static final int SYNC_INFO_SET_ERROR = 2; 35 36 41 public static final int SYNC_INFO_SET_CANCELLATION = 3; 42 43 48 public static final int READ_ONLY_LOCAL = 279; 49 50 54 public IResource getResource(); 55 } 56 | Popular Tags |