mirror of
https://github.com/corda/corda.git
synced 2025-06-13 04:38:19 +00:00
flesh out some classpath classes
This commit is contained in:
@ -3,6 +3,10 @@ package java.util;
|
||||
public interface Map<K, V> {
|
||||
public int size();
|
||||
|
||||
public boolean containsKey(K key);
|
||||
|
||||
public boolean containsValue(V value);
|
||||
|
||||
public V get(K key);
|
||||
|
||||
public V put(K key, V value);
|
||||
|
Reference in New Issue
Block a user