com.skaringa.javaxml.serializers
Class MapEntryHelper

java.lang.Object
  extended by com.skaringa.javaxml.serializers.MapEntryHelper

public final class MapEntryHelper
extends java.lang.Object

Class that helps with deserialization of Maps.


Constructor Summary
MapEntryHelper()
          Default ctor.
MapEntryHelper(java.lang.Object key, java.lang.Object value)
          Ctor.
 
Method Summary
 java.lang.Object getKey()
          Gets the key
 java.lang.Object getValue()
          Gets the value
 void setKey(java.lang.Object key)
          Sets the key
 void setValue(java.lang.Object value)
          Sets the value
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

MapEntryHelper

public MapEntryHelper()
Default ctor.


MapEntryHelper

public MapEntryHelper(java.lang.Object key,
                      java.lang.Object value)
Ctor.

Parameters:
key - The key.
value - The value.
Method Detail

getKey

public java.lang.Object getKey()
Gets the key

Returns:
Returns a Object

setKey

public void setKey(java.lang.Object key)
Sets the key

Parameters:
key - The key to set

getValue

public java.lang.Object getValue()
Gets the value

Returns:
Returns a Object

setValue

public void setValue(java.lang.Object value)
Sets the value

Parameters:
value - The value to set