Purpose: Generic association object. This can be used to map hashtable/map containers where the key and value primitives or independent objects.
Default constructor. super();
super();
PUBLIC: Create an association. this.key = key; this.value = value;
this.key = key; this.value = value;
PUBLIC: Return the key. return key;
return key;
PUBLIC: Return the value. return value;
return value;
PUBLIC: Set the key. this.key = key;
this.key = key;
PUBLIC: Set the value. Object oldValue = this.value; this.value = value; return oldValue;
Object oldValue = this.value; this.value = value; return oldValue;