Minor update
- Added simple Pair object due to lack of javafx support
This commit is contained in:
parent
f63b5beb93
commit
c8a541912f
@ -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;
|
||||
|
16
src/com/tofvesson/collections/Pair.java
Normal file
16
src/com/tofvesson/collections/Pair.java
Normal 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; }
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user