Minor update

- Added simple Pair object due to lack of javafx support
This commit is contained in:
Gabriel Tofvesson 2016-12-21 02:38:57 +01:00
parent f63b5beb93
commit c8a541912f
2 changed files with 17 additions and 1 deletions

View File

@ -1,6 +1,6 @@
package com.tofvesson.async;
import javafx.util.Pair;
import com.tofvesson.collections.Pair;
import java.lang.reflect.Field;
import java.lang.reflect.Method;

View File

@ -0,0 +1,16 @@
package com.tofvesson.collections;
public class Pair<K, V> {
private final K k;
private V v;
public Pair(K k, V v){
this.k = k;
this.v = v;
}
public K getKey(){ return k; }
public V getValue(){ return v; }
public void setValue(V v){ this.v = v; }
}