Package org.codehaus.mojo.exec
Class Property
- java.lang.Object
-
- org.codehaus.mojo.exec.Property
-
public class Property extends java.lang.Object
Wrapper class for the systemPropery argument type.
-
-
Constructor Summary
Constructors Constructor Description Property()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getKey()
Getter for the fieldkey
.java.lang.String
getValue()
Getter for the fieldvalue
.void
setKey(java.lang.String key)
Setter for the fieldkey
.void
setValue(java.lang.String value)
Setter for the fieldvalue
.
-
-
-
Method Detail
-
getKey
public java.lang.String getKey()
Getter for the field
key
.- Returns:
- a
String
object.
-
setKey
public void setKey(java.lang.String key)
Setter for the field
key
.- Parameters:
key
- aString
object.
-
getValue
public java.lang.String getValue()
Getter for the field
value
.- Returns:
- a
String
object.
-
setValue
public void setValue(java.lang.String value)
Setter for the field
value
.- Parameters:
value
- aString
object.
-
-