Package org.codehaus.mojo.buildhelper
Class Artifact
- java.lang.Object
-
- org.codehaus.mojo.buildhelper.Artifact
-
public class Artifact extends java.lang.Object
Artifact class.
- Version:
- $Id$
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.String
classifier
private java.io.File
file
private java.lang.String
type
-
Constructor Summary
Constructors Constructor Description Artifact()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getClassifier()
Getter for the fieldclassifier
.java.io.File
getFile()
Getter for the fieldfile
.java.lang.String
getType()
Getter for the fieldtype
.void
setClassifier(java.lang.String classifier)
Setter for the fieldclassifier
.void
setFile(java.io.File localFile)
Setter for the fieldfile
.void
setType(java.lang.String type)
Setter for the fieldtype
.
-
-
-
Method Detail
-
setFile
public void setFile(java.io.File localFile)
Setter for the field
file
.- Parameters:
localFile
- aFile
object.
-
getFile
public java.io.File getFile()
Getter for the field
file
.- Returns:
- a
File
object.
-
setType
public void setType(java.lang.String type)
Setter for the field
type
.- Parameters:
type
- aString
object.
-
getType
public java.lang.String getType()
Getter for the field
type
.- Returns:
- a
String
object.
-
setClassifier
public void setClassifier(java.lang.String classifier)
Setter for the field
classifier
.- Parameters:
classifier
- aString
object.
-
getClassifier
public java.lang.String getClassifier()
Getter for the field
classifier
.- Returns:
- a
String
object.
-
-