public class RegistrySimple<K,V> extends java.lang.Object implements IRegistry<K,V>
| Modifier and Type | Field and Description |
|---|---|
protected java.util.Map<K,V> |
registryObjects |
| Constructor and Description |
|---|
RegistrySimple() |
| Modifier and Type | Method and Description |
|---|---|
boolean |
containsKey(K p_148741_1_)
Does this registry contain an entry for the given key?
|
protected java.util.Map<K,V> |
createUnderlyingMap() |
java.util.Set<K> |
getKeys() |
V |
getObject(K name) |
java.util.Iterator<V> |
iterator() |
void |
putObject(K key,
V value)
Register an object on this registry.
|