org.gradle.tooling.model
Interface ExternalDependency

All Superinterfaces:
Dependency

public interface ExternalDependency
extends Dependency

Represents an external artifact dependency.


Method Summary
 File getFile()
          Returns the file for this dependency.
 File getJavadoc()
          Returns the Javadoc directory/archive for this dependency.
 File getSource()
          Returns the source directory/archive for this dependency.
 

Method Detail

getFile

File getFile()
Returns the file for this dependency.

Returns:
The file. Never null.

getSource

File getSource()
Returns the source directory/archive for this dependency.

Returns:
The source file. Returns null when the source is not available for this dependency.

getJavadoc

File getJavadoc()
Returns the Javadoc directory/archive for this dependency.

Returns:
The Javadoc file. Returns null when the Javadoc is not available for this dependency.