org.android.activityminer.app.util
Class ParameterValuePair

Package class diagram package ParameterValuePair
java.lang.Object
  extended by org.android.activityminer.app.util.ParameterValuePair
All Implemented Interfaces:
Map.Entry<String,String>

public class ParameterValuePair
extends Object
implements Map.Entry<String,String>

A simple implementation of key value pairs < String, String > for the parameter value entries of the ParameterValuePairAdapter.


Field Summary
private  String key
          The parameter key.
private  String value
          The value for the parameter key.
 
Constructor Summary
ParameterValuePair(String key, String value)
          Constructor
 
Method Summary
 String getKey()
           
 String getValue()
           
 String setValue(String value)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface java.util.Map.Entry
equals, hashCode
 

Field Detail

key

private final String key
The parameter key.


value

private String value
The value for the parameter key.

Constructor Detail

ParameterValuePair

public ParameterValuePair(String key,
                          String value)
Constructor

Parameters:
key - the parameter key
value - the value for the parameter key
Method Detail

getKey

public String getKey()
Specified by:
getKey in interface Map.Entry<String,String>

getValue

public String getValue()
Specified by:
getValue in interface Map.Entry<String,String>

setValue

public String setValue(String value)
Specified by:
setValue in interface Map.Entry<String,String>