Class PropertyValue
- java.lang.Object
-
- org.apache.maven.buildcache.xml.build.PropertyValue
-
- All Implemented Interfaces:
Serializable
public class PropertyValue extends Object implements Serializable
Class PropertyValue.- Version:
- $Revision$ $Date$
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PropertyValue()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getName()
Get the name field.String
getValue()
Get the value field.Boolean
isTracked()
Get the tracked field.void
setName(String name)
Set the name field.void
setTracked(Boolean tracked)
Set the tracked field.void
setValue(String value)
Set the value field.
-
-
-
Method Detail
-
getName
public String getName()
Get the name field.- Returns:
- String
-
getValue
public String getValue()
Get the value field.- Returns:
- String
-
isTracked
public Boolean isTracked()
Get the tracked field.- Returns:
- Boolean
-
setName
public void setName(String name)
Set the name field.- Parameters:
name
- a name object.
-
setTracked
public void setTracked(Boolean tracked)
Set the tracked field.- Parameters:
tracked
- a tracked object.
-
setValue
public void setValue(String value)
Set the value field.- Parameters:
value
- a value object.
-
-