Your browser does not support JavaScript and this site utilizes JavaScript to build content and provide links to additional information. You should either enable JavaScript in your browser settings or use a browser that supports JavaScript in order to take full advantage of this site.
1 11 package org.eclipse.core.internal.resources; 12 13 import org.eclipse.core.resources.*; 14 import org.eclipse.core.runtime.QualifiedName; 15 16 public interface ICoreConstants { 17 18 20 public static final QualifiedName K_BUILD_LIST = new QualifiedName(ResourcesPlugin.PI_RESOURCES, "BuildMap"); 22 25 public static final String REFRESH_ON_STARTUP = "-refresh"; 27 static final long I_NULL_SYNC_INFO = -1; 29 30 static final int M_OPEN = 0x1; 32 static final int M_LOCAL_EXISTS = 0x2; 33 static final int M_PHANTOM = 0x8; 34 static final int M_USED = 0x10; 35 static final int M_TYPE = 0xF00; 36 static final int M_TYPE_START = 8; 37 static final int M_MARKERS_SNAP_DIRTY = 0x1000; 38 static final int M_SYNCINFO_SNAP_DIRTY = 0x2000; 39 43 static final int M_DERIVED = 0x4000; 44 48 static final int M_TEAM_PRIVATE_MEMBER = 0x8000; 49 53 static final int M_LINK = 0x10000; 54 58 static final int M_NO_CONTENT_DESCRIPTION = 0x20000; 59 63 static final int M_DEFAULT_CONTENT_DESCRIPTION = 0x40000; 64 65 69 static final int M_CHILDREN_UNKNOWN = 0x100000; 70 71 75 static final int M_CONTENT_CACHE = M_NO_CONTENT_DESCRIPTION | M_DEFAULT_CONTENT_DESCRIPTION; 76 77 static final int NULL_FLAG = -1; 78 79 84 public static final String PREF_VERSION_KEY = "version"; 86 91 public static final String PREF_VERSION = "1"; 93 public static final int CRASH_DETECTED = 10035; 97 98 100 public static final int PROJECT_SEGMENT_LENGTH = 1; 101 public static final int MINIMUM_FOLDER_SEGMENT_LENGTH = 2; 102 public static final int MINIMUM_FILE_SEGMENT_LENGTH = 2; 103 104 public static final int WORKSPACE_TREE_VERSION_1 = 67305985; 105 public static final int WORKSPACE_TREE_VERSION_2 = 67305986; 106 107 public static final IProject[] EMPTY_PROJECT_ARRAY = new IProject[0]; 109 public static final IResource[] EMPTY_RESOURCE_ARRAY = new IResource[0]; 110 public static final IFileState[] EMPTY_FILE_STATES = new IFileState[0]; 111 } 112
| Popular Tags
|