Package org.refcodes.mixin
Interface KeyAccessor.KeyMutator<K>
-
- Type Parameters:
K- The type of the key property.
- All Known Subinterfaces:
KeyAccessor.KeyProperty<K>
- Enclosing interface:
- KeyAccessor<K>
public static interface KeyAccessor.KeyMutator<K>Provides a mutator for a key property for e.g. key/value-pair.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidsetKey(K aKey)Sets the key for the key property.
-
-
-
Method Detail
-
setKey
void setKey(K aKey)
Sets the key for the key property.- Parameters:
aKey- The key to be stored by the key property.
-
-