Uses of Interface
org.eclipse.jdt.core.IClasspathAttribute

Packages that use IClasspathAttribute
org.eclipse.jdt.core The Java model is the set of classes that model the objects associated with creating, editing, and building a Java program. 
org.eclipse.jdt.internal.core   
 

Uses of IClasspathAttribute in org.eclipse.jdt.core
 

Methods in org.eclipse.jdt.core that return IClasspathAttribute
 IClasspathAttribute[] IClasspathEntry.getExtraAttributes()
          Returns the extra classpath attributes for this classpath entry.
static IClasspathAttribute JavaCore.newClasspathAttribute(java.lang.String name, java.lang.String value)
          Creates and returns a new classpath attribute with the given name and the given value.
 

Methods in org.eclipse.jdt.core with parameters of type IClasspathAttribute
static IClasspathEntry JavaCore.newContainerEntry(org.eclipse.core.runtime.IPath containerPath, IAccessRule[] accessRules, IClasspathAttribute[] extraAttributes, boolean isExported)
          Creates and returns a new classpath entry of kind CPE_CONTAINER for the given path.
static IClasspathEntry JavaCore.newLibraryEntry(org.eclipse.core.runtime.IPath path, org.eclipse.core.runtime.IPath sourceAttachmentPath, org.eclipse.core.runtime.IPath sourceAttachmentRootPath, IAccessRule[] accessRules, IClasspathAttribute[] extraAttributes, boolean isExported)
          Creates and returns a new classpath entry of kind CPE_LIBRARY for the JAR or folder identified by the given absolute path.
static IClasspathEntry JavaCore.newProjectEntry(org.eclipse.core.runtime.IPath path, IAccessRule[] accessRules, boolean combineAccessRules, IClasspathAttribute[] extraAttributes, boolean isExported)
          Creates and returns a new classpath entry of kind CPE_PROJECT for the project identified by the given absolute path.
static IClasspathEntry JavaCore.newSourceEntry(org.eclipse.core.runtime.IPath path, org.eclipse.core.runtime.IPath[] inclusionPatterns, org.eclipse.core.runtime.IPath[] exclusionPatterns, org.eclipse.core.runtime.IPath specificOutputLocation, IClasspathAttribute[] extraAttributes)
          Creates and returns a new classpath entry of kind CPE_SOURCE for the project's source folder identified by the given absolute workspace-relative path using the given inclusion and exclusion patterns to determine which source files are included, and the given output path to control the output location of generated files.
static IClasspathEntry JavaCore.newVariableEntry(org.eclipse.core.runtime.IPath variablePath, org.eclipse.core.runtime.IPath variableSourceAttachmentPath, org.eclipse.core.runtime.IPath variableSourceAttachmentRootPath, IAccessRule[] accessRules, IClasspathAttribute[] extraAttributes, boolean isExported)
          Creates and returns a new classpath entry of kind CPE_VARIABLE for the given path.
 

Uses of IClasspathAttribute in org.eclipse.jdt.internal.core
 

Classes in org.eclipse.jdt.internal.core that implement IClasspathAttribute
 class ClasspathAttribute
           
 

Fields in org.eclipse.jdt.internal.core declared as IClasspathAttribute
static IClasspathAttribute[] ClasspathEntry.NO_EXTRA_ATTRIBUTES
           
 

Methods in org.eclipse.jdt.internal.core that return IClasspathAttribute
 IClasspathAttribute[] ClasspathEntry.getExtraAttributes()
           
 

Constructors in org.eclipse.jdt.internal.core with parameters of type IClasspathAttribute
ClasspathEntry(int contentKind, int entryKind, org.eclipse.core.runtime.IPath path, org.eclipse.core.runtime.IPath[] inclusionPatterns, org.eclipse.core.runtime.IPath[] exclusionPatterns, org.eclipse.core.runtime.IPath sourceAttachmentPath, org.eclipse.core.runtime.IPath sourceAttachmentRootPath, org.eclipse.core.runtime.IPath specificOutputLocation, boolean isExported, IAccessRule[] accessRules, boolean combineAccessRules, IClasspathAttribute[] extraAttributes)
          Creates a class path entry of the specified kind with the given path.