Method Summary |
|
public boolean | contains(String key) Returns true if the given key is set in the configuration. |
public boolean | getBoolean(String key) Get the boolean value corresponding to the given configuration key.
This is the basic way for a stage to retrieve its initialization
arguments. |
public double | getDouble(String key) Get the double value corresponding to the given configuration key.
This is the basic way for a stage to retrieve its initialization
arguments. |
public int | getInt(String key) Get the integer value corresponding to the given configuration key.
This is the basic way for a stage to retrieve its initialization
arguments. |
public ManagerIF | getManager() Return a handle to the system manager. |
public StageIF | getStage() Return the StageIF for this stage. |
public String | getString(String key) Get the string value corresponding to the given configuration key.
This is the basic way for a stage to retrieve its initialization
arguments. |
public String[] | getStringList(String key) Get the value corresponding to the given configuration key as a
list of Strings. |
public void | setBoolean(String key, boolean val) Set the given configuration key to the given boolean value. |
public void | setDouble(String key, double val) Set the given configuration key to the given double value. |
public void | setInt(String key, int val) Set the given configuration key to the given integer value. |
public void | setStage(StageIF stage) Used to set the StageIF when initializing a ConfigDataIF.
This is an internal interface and not for use by applications. |
public void | setString(String key, String val) Set the given configuration key to the given string value. |
public void | setStringList(String key, String values) Set the value corresponding to the given configuration key as a
list of Strings. |