Class DependencyImpl
- java.lang.Object
-
- io.quarkus.bootstrap.model.gradle.impl.DependencyImpl
-
- All Implemented Interfaces:
Dependency,Serializable
public class DependencyImpl extends Object implements Dependency, Serializable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DependencyImpl(String name, String groupId, String version, File path, String scope, String type, String classifier, int... flags)DependencyImpl(String name, String groupId, String version, String scope, String type, String classifier, int... flags)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddPath(File path)booleanequals(Object obj)StringgetClassifier()intgetFlags()StringgetGroupId()StringgetName()Set<File>getPaths()StringgetScope()StringgetType()StringgetVersion()inthashCode()booleanisFlagSet(int flag)voidsetFlag(int flag)StringtoString()
-
-
-
Method Detail
-
getName
public String getName()
- Specified by:
getNamein interfaceDependency
-
getGroupId
public String getGroupId()
- Specified by:
getGroupIdin interfaceDependency
-
getVersion
public String getVersion()
- Specified by:
getVersionin interfaceDependency
-
getType
public String getType()
- Specified by:
getTypein interfaceDependency
-
getClassifier
public String getClassifier()
- Specified by:
getClassifierin interfaceDependency
-
getPaths
public Set<File> getPaths()
- Specified by:
getPathsin interfaceDependency
-
addPath
public void addPath(File path)
-
getScope
public String getScope()
- Specified by:
getScopein interfaceDependency
-
getFlags
public int getFlags()
- Specified by:
getFlagsin interfaceDependency
-
setFlag
public void setFlag(int flag)
-
isFlagSet
public boolean isFlagSet(int flag)
-
-