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 SummaryConstructors Constructor Description JavadocPathArtifact()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object other)Method equals.StringgetArtifactId()Get the id of the artifact.StringgetClassifier()Get the classifier of the artifact.StringgetGroupId()Get the id of the group of the artifact.StringgetVersion()Get the version of the artifact.inthashCode()Method hashCode.voidsetArtifactId(String artifactId)Set the id of the artifact.voidsetClassifier(String classifier)Set the classifier of the artifact.voidsetGroupId(String groupId)Set the id of the group of the artifact.voidsetVersion(String version)Set the version of the artifact.StringtoString()Method toString.
 
- 
- 
- 
Method Detail- 
equalspublic boolean equals(Object other) Method equals.
 - 
getArtifactIdpublic String getArtifactId() Get the id of the artifact.- Returns:
- String
 
 - 
getClassifierpublic String getClassifier() Get the classifier of the artifact.- Returns:
- String
 
 - 
getGroupIdpublic String getGroupId() Get the id of the group of the artifact.- Returns:
- String
 
 - 
getVersionpublic String getVersion() Get the version of the artifact.- Returns:
- String
 
 - 
setArtifactIdpublic void setArtifactId(String artifactId) Set the id of the artifact.- Parameters:
- artifactId- a artifactId object.
 
 - 
setClassifierpublic void setClassifier(String classifier) Set the classifier of the artifact.- Parameters:
- classifier- a classifier object.
 
 - 
setGroupIdpublic void setGroupId(String groupId) Set the id of the group of the artifact.- Parameters:
- groupId- a groupId object.
 
 - 
setVersionpublic void setVersion(String version) Set the version of the artifact.- Parameters:
- version- a version object.
 
 
- 
 
-