Package org.codehaus.mojo.exec
Class ExecutableDependency
- java.lang.Object
-
- org.codehaus.mojo.exec.ExecutableDependency
-
public class ExecutableDependency extends java.lang.ObjectExecutableDependency class.
-
-
Constructor Summary
Constructors Constructor Description ExecutableDependency()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object o)java.lang.StringgetArtifactId()Getter for the fieldartifactId.java.lang.StringgetGroupId()Getter for the fieldgroupId.inthashCode()booleanmatches(org.apache.maven.artifact.Artifact artifact)Matches the groupId and artifactId.voidsetArtifactId(java.lang.String artifactId)Setter for the fieldartifactId.voidsetGroupId(java.lang.String groupId)Setter for the fieldgroupId.java.lang.StringtoString()
-
-
-
Method Detail
-
getGroupId
public java.lang.String getGroupId()
Getter for the field
groupId.- Returns:
- a
Stringobject.
-
setGroupId
public void setGroupId(java.lang.String groupId)
Setter for the field
groupId.- Parameters:
groupId- aStringobject.
-
getArtifactId
public java.lang.String getArtifactId()
Getter for the field
artifactId.- Returns:
- a
Stringobject.
-
setArtifactId
public void setArtifactId(java.lang.String artifactId)
Setter for the field
artifactId.- Parameters:
artifactId- aStringobject.
-
matches
public boolean matches(org.apache.maven.artifact.Artifact artifact)
Matches the groupId and artifactId.
- Parameters:
artifact- aArtifactobject.- Returns:
trueif both math,falseotherwise.
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
-