Package jadex.commons
Class Property
- java.lang.Object
-
- jadex.commons.Property
-
public class Property extends java.lang.Object
A configuration property.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getName()
Get the name.java.lang.String
getType()
Get the type.java.lang.String
getValue()
Get the value.void
setName(java.lang.String name)
Set the name.void
setType(java.lang.String type)
Set the type.void
setValue(java.lang.String value)
Set the value.java.lang.String
toString()
Get the string representation.
-
-
-
Method Detail
-
getName
public java.lang.String getName()
Get the name.- Returns:
- The name.
-
setName
public void setName(java.lang.String name)
Set the name.- Parameters:
name
- The name to set.
-
getType
public java.lang.String getType()
Get the type.- Returns:
- The type.
-
setType
public void setType(java.lang.String type)
Set the type.- Parameters:
type
- The type to set.
-
getValue
public java.lang.String getValue()
Get the value.- Returns:
- The value.
-
setValue
public void setValue(java.lang.String value)
Set the value.
-
toString
public java.lang.String toString()
Get the string representation.- Overrides:
toString
in classjava.lang.Object
- Returns:
- The string representation.
-
-