Class JavadocPathArtifact
- java.lang.Object
-
- org.apache.maven.plugins.javadoc.options.JavadocPathArtifact
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
BootclasspathArtifact
,DocletArtifact
,ResourcesArtifact
,TagletArtifact
public class JavadocPathArtifact extends Object implements Serializable
An artifact object used by Javadoc path options like -docletpath or -tagletpath.- Version:
- $Revision$ $Date$
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description JavadocPathArtifact()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object other)
Method equals.String
getArtifactId()
Get the id of the artifact.String
getGroupId()
Get the id of the group of the artifact.String
getVersion()
Get the version of the artifact.int
hashCode()
Method hashCode.void
setArtifactId(String artifactId)
Set the id of the artifact.void
setGroupId(String groupId)
Set the id of the group of the artifact.void
setVersion(String version)
Set the version of the artifact.String
toString()
Method toString.
-
-
-
Method Detail
-
equals
public boolean equals(Object other)
Method equals.
-
getArtifactId
public String getArtifactId()
Get the id of the artifact.- Returns:
- String
-
getGroupId
public String getGroupId()
Get the id of the group of the artifact.- Returns:
- String
-
getVersion
public String getVersion()
Get the version of the artifact.- Returns:
- String
-
setArtifactId
public void setArtifactId(String artifactId)
Set the id of the artifact.- Parameters:
artifactId
-
-
setGroupId
public void setGroupId(String groupId)
Set the id of the group of the artifact.- Parameters:
groupId
-
-
setVersion
public void setVersion(String version)
Set the version of the artifact.- Parameters:
version
-
-
-