xdoclet
Class ConfigParameter
- Serializable
public final class ConfigParameter
extends java.lang.Object
implements Serializable
Allows to set configuration parameters that will be included in the element as attribute value pair.
The following input
<configParam name="foo" value="bar"/>
will give
<foo>bar</foo>
Version:
- Ara Abrahamian (ara_e@email.com)
- name = "configParam"
- Jan 21, 2002
String | getName() - Gets the Name attribute of the ConfigParameter object
|
String | getValue() - Gets the Value attribute of the ConfigParameter object
|
void | setName(String name) - The name of the parameter.
|
void | setValue(String value) - The value of the parameter.
|
getName
public String getName()
Gets the Name attribute of the ConfigParameter object
- The Name value
getValue
public String getValue()
Gets the Value attribute of the ConfigParameter object
- The Value value
setName
public void setName(String name)
The name of the parameter.
name
- The new Name value
- Yes
setValue
public void setValue(String value)
The value of the parameter.
value
- The new Value value
- Yes