org.jplate.kvp
Interface KvpIfc

All Superinterfaces:
FormattableIfc
All Known Implementing Classes:
DefaultKvp

public interface KvpIfc
extends FormattableIfc

Defines a key value pair.

Modifications:
    $Date: 2008-12-02 12:32:45 -0500 (Tue, 02 Dec 2008) $
    $Revision: 479 $
    $Author: sfloess $
    $HeadURL: https://jplate.svn.sourceforge.net/svnroot/jplate/trunk/src/dev/java/org/jplate/kvp/KvpIfc.java $
    


Method Summary
 java.lang.String getKey()
          Returns the key.
 java.lang.String getValue()
          Returns the value.
 void setKey(java.lang.String key)
          Sets the key.
 void setValue(java.lang.String value)
          Sets the value.
 
Methods inherited from interface org.jplate.foundation.FormattableIfc
toString
 

Method Detail

getKey

java.lang.String getKey()
Returns the key.

Returns:
the key.

setKey

void setKey(java.lang.String key)
Sets the key.

Parameters:
key - The new key.

getValue

java.lang.String getValue()
Returns the value.

Returns:
the value.

setValue

void setValue(java.lang.String value)
Sets the value.

Parameters:
value - The new value.