xdoclet

Class ConfigParameter

public final class ConfigParameter extends 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: $Revision: 1.7 $

Author: Ara Abrahamian (ara_e@email.com)

UNKNOWN: Jan 21, 2002 name = "configParam"

Method Summary
StringgetName()
Gets the Name attribute of the ConfigParameter object
StringgetValue()
Gets the Value attribute of the ConfigParameter object
voidsetName(String name)
The name of the parameter.
voidsetValue(String value)
The value of the parameter.

Method Detail

getName

public String getName()
Gets the Name attribute of the ConfigParameter object

Returns: The Name value

getValue

public String getValue()
Gets the Value attribute of the ConfigParameter object

Returns: The Value value

setName

public void setName(String name)
The name of the parameter.

Parameters: name The new Name value

UNKNOWN: Yes

setValue

public void setValue(String value)
The value of the parameter.

Parameters: value The new Value value

UNKNOWN: Yes