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.resources; 12 13 import org.eclipse.core.runtime.*; 14 15 28 public interface IResourceStatus extends IStatus { 29 30 33 34 41 public static final int INVALID_NATURE_SET = 35; 42 43 45 48 public static final int BUILD_FAILED = 75; 49 50 53 public static final int OPERATION_FAILED = 76; 54 55 58 public static final int INVALID_VALUE = 77; 59 60 63 65 69 public static final int MISSING_DESCRIPTION_REPAIRED = 234; 70 71 75 public static final int OVERLAPPING_LOCATION = 235; 76 77 79 83 public static final int EXISTS_LOCAL = 268; 84 85 89 public static final int NOT_FOUND_LOCAL = 269; 90 91 95 public static final int NO_LOCATION_LOCAL = 270; 96 97 101 public static final int FAILED_READ_LOCAL = 271; 102 103 107 public static final int FAILED_WRITE_LOCAL = 272; 108 109 113 public static final int FAILED_DELETE_LOCAL = 273; 114 115 120 public static final int OUT_OF_SYNC_LOCAL = 274; 121 122 127 public static final int CASE_VARIANT_EXISTS = 275; 128 129 134 public static final int WRONG_TYPE_LOCAL = 276; 135 136 141 public static final int PARENT_READ_ONLY = 277; 142 143 147 public static final int INVALID_RESOURCE_NAME = 278; 148 149 154 public static final int READ_ONLY_LOCAL = 279; 155 156 159 161 166 public static final int VARIABLE_NOT_DEFINED_WARNING = 333; 167 168 170 174 public static final int RESOURCE_WRONG_TYPE = 366; 175 176 180 public static final int RESOURCE_EXISTS = 367; 181 182 186 public static final int RESOURCE_NOT_FOUND = 368; 187 188 192 public static final int RESOURCE_NOT_LOCAL = 369; 193 194 198 public static final int WORKSPACE_NOT_OPEN = 370; 199 200 204 public static final int PROJECT_NOT_OPEN = 372; 205 206 211 public static final int PATH_OCCUPIED = 374; 212 213 217 public static final int PARTNER_NOT_REGISTERED = 375; 218 219 223 public static final int MARKER_NOT_FOUND = 376; 224 225 230 public static final int RESOURCE_NOT_LINKED = 377; 231 232 237 public static final int LINKING_NOT_ALLOWED = 378; 238 239 244 public static final int VARIABLE_NOT_DEFINED = 379; 245 246 253 public static final int WORKSPACE_LOCKED = 380; 254 255 261 public static final int FAILED_DESCRIBING_CONTENTS = 381; 262 263 270 public static final int FAILED_SETTING_CHARSET = 382; 271 272 277 public static final int FAILED_GETTING_CHARSET = 383; 278 279 282 284 286 290 public static final int INTERNAL_ERROR = 566; 291 292 296 public static final int FAILED_READ_METADATA = 567; 297 298 302 public static final int FAILED_WRITE_METADATA = 568; 303 304 308 public static final int FAILED_DELETE_METADATA = 569; 309 310 315 public IPath getPath(); 316 } 317
| Popular Tags
|