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>
- Ara Abrahamian (ara_e@email.com)
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
getValue
public String getValue()
Gets the Value attribute of the ConfigParameter object
setName
public void setName(String name)
The name of the parameter.
name
- The new Name value
setValue
public void setValue(String value)
The value of the parameter.
value
- The new Value value