1 11 package org.eclipse.jdt.core; 12 13 import org.eclipse.core.runtime.IPath; 14 15 116 public interface IClasspathEntry { 117 118 123 int CPE_LIBRARY = 1; 124 125 129 int CPE_PROJECT = 2; 130 131 136 int CPE_SOURCE = 3; 137 138 142 int CPE_VARIABLE = 4; 143 144 150 int CPE_CONTAINER = 5; 151 152 160 boolean combineAccessRules(); 161 162 168 IAccessRule[] getAccessRules(); 169 179 int getContentKind(); 180 181 199 int getEntryKind(); 200 201 282 IPath[] getExclusionPatterns(); 283 284 291 IClasspathAttribute[] getExtraAttributes(); 292 293 342 IPath[] getInclusionPatterns(); 343 344 361 IPath getOutputLocation(); 362 363 390 IPath getPath(); 391 392 407 IPath getSourceAttachmentPath(); 408 409 419 IPath getSourceAttachmentRootPath(); 420 421 429 boolean isExported(); 430 431 452 IClasspathEntry getResolvedEntry(); 453 } 454 | Popular Tags |