package javaforce;
/** Key/Value Tuple.
*
* A DBus object.
*
* Tuples are used to store one JFDictionary entry and are not supported by the DBus specification but are used internally.
*
* @author pquiring
*/
public class JFTuple {
public K key;
public V value;
public Class key_type;
public Class value_type;
public JFTuple(Class key_type, Class value_type) {
this.key_type = key_type;
this.value_type = value_type;
}
}