ZMObject
|
+--ZMConfigValue
public class ZMConfigValue
extends ZMObject
| Fields inherited from org.zenmagick.ZMObject | |
|---|---|
| properties_ | |
| Constructor Summary | |
|---|---|
Create new config value. |
|
| Method Summary | |
|---|---|
| string | Get the description. |
| string | getId() Get the id. |
| string | getKey() Get the key. |
| string | getName() Get the name. |
| string | Get the set function. |
| string | Get the use function. |
| mixed | getValue() Get the value. |
| boolean | Check if a set function is set or not. |
| void | setDescription(string description) Set the description. |
| void | setId(string id) Set the id. |
| void | setKey(string key) Set the key. |
| void | setName(string name) Set the name. |
| void | setSetFunction(string function) Set the set function. |
| void | setUseFunction(string function) Set the use function. |
| void | setValue(mixed value) Set the value. |
| Methods inherited from org.zenmagick.ZMObject | |
|---|---|
| attachMethod, get, getAttachedMethods, getPropertyNames, set, singleton | |
public ZMConfigValue()
Create new config value. /
public string getDescription()
Get the description.
public string getId()
Get the id.
public string getKey()
Get the key.
public string getName()
Get the name.
public string getSetFunction()
Get the set function.
public string getUseFunction()
Get the use function.
public mixed getValue()
Get the value.
public boolean hasSetFunction()
Check if a set function is set or not.
true if a set function is configured, false if not.public void setDescription(string description)
Set the description.
public void setId(string id)
Set the id.
public void setKey(string key)
Set the key.
public void setName(string name)
Set the name.
public void setSetFunction(string function)
Set the set function.
public void setUseFunction(string function)
Set the use function.
public void setValue(mixed value)
Set the value.
Configuration value.