Class ProjectLibrary
- java.lang.Object
-
- org.gradle.plugins.ide.idea.model.ProjectLibrary
-
public class ProjectLibrary extends Object
A project-level IDEA library.
-
-
Constructor Summary
Constructors Constructor Description ProjectLibrary()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddToNode(Node parentNode, PathFactory pathFactory)booleanequals(Object obj)Set<File>getClasses()A set of Jar files or directories containing compiled code.Set<File>getCompilerClasspath()A set of Jar files containing compiler classes.Set<File>getJavadoc()A set of Jar files or directories containing javadoc.StringgetName()The name of the library.Set<File>getSources()A set of directories containing sources.StringgetType()The type of the library.inthashCode()voidsetClasses(Set<File> classes)A set of Jar files or directories containing source code.voidsetCompilerClasspath(Set<File> compilerClasspath)voidsetJavadoc(Set<File> javadoc)voidsetName(String name)voidsetSources(Set<File> sources)voidsetType(String type)
-
-
-
Method Detail
-
getName
public String getName()
The name of the library.
-
setName
public void setName(String name)
-
getType
public String getType()
The type of the library.
-
setType
public void setType(String type)
-
getCompilerClasspath
public Set<File> getCompilerClasspath()
A set of Jar files containing compiler classes.
-
getClasses
public Set<File> getClasses()
A set of Jar files or directories containing compiled code.
-
setClasses
public void setClasses(Set<File> classes)
A set of Jar files or directories containing source code.
-
addToNode
public void addToNode(Node parentNode, PathFactory pathFactory)
-
-