Package org.gradle.tooling.model.eclipse
Interface EclipseClasspathEntry
- All Known Subinterfaces:
- EclipseClasspathContainer,- EclipseExternalDependency,- EclipseProjectDependency,- EclipseSourceDirectory
public interface EclipseClasspathEntry
An element that can have classpath attributes.
- Since:
- 2.14
- 
Method SummaryModifier and TypeMethodDescriptionDomainObjectSet<? extends AccessRule> Returns the access rules associated with this classpath entry.DomainObjectSet<? extends ClasspathAttribute> Returns the classpath attributes associated with this classpath entry.
- 
Method Details- 
getClasspathAttributesDomainObjectSet<? extends ClasspathAttribute> getClasspathAttributes() throws UnsupportedMethodExceptionReturns the classpath attributes associated with this classpath entry.- Returns:
- The classpath attributes.
- Throws:
- UnsupportedMethodException- For Gradle versions older than 2.14, where this method is not supported.
 
- 
getAccessRulesReturns the access rules associated with this classpath entry.- Returns:
- The access rules.
- Throws:
- UnsupportedMethodException- For Gradle versions older than 3.0, where this method is not supported.
- Since:
- 3.0
 
 
-