net.sourceforge.sqlunit.ant
Class SyspropertyElement

java.lang.Object
  extended by net.sourceforge.sqlunit.ant.SyspropertyElement

public class SyspropertyElement
extends java.lang.Object

Sample placeholder for key-value pairs that will be set as System properties.

Version:
$Revision: 1.1 $
Author:
Ivan Ivanov

Constructor Summary
SyspropertyElement()
           
 
Method Summary
 java.lang.String getKey()
          Returns the key of the property.
 java.lang.String getValue()
          Returns the value of the property.
 void setKey(java.lang.String key)
          Sets the key of the property.
 void setValue(java.lang.String value)
          Sets the value of the property.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SyspropertyElement

public SyspropertyElement()
Method Detail

getKey

public java.lang.String getKey()
Returns the key of the property.

Returns:
the key of the property.
See Also:
setKey(String)

setKey

public void setKey(java.lang.String key)
Sets the key of the property.

Parameters:
key - the key to set.
See Also:
getKey()

getValue

public java.lang.String getValue()
Returns the value of the property.

Returns:
the value of the property
See Also:
setValue(String)

setValue

public void setValue(java.lang.String value)
Sets the value of the property.

Parameters:
value - the value to set.
See Also:
getValue()