public interface IDataAcceptor
A data acceptor associates data with data holders. It constitutes a write-only view on particular data.
Modifier and Type | Method and Description |
---|---|
void |
set(Object dataHolder,
Object value)
Sets an object value associated with the given data holder.
|
void |
setBool(Object dataHolder,
boolean value)
Sets a boolean value associated with the given data holder.
|
void |
setDouble(Object dataHolder,
double value)
Sets a double value associated with the given data holder.
|
void |
setInt(Object dataHolder,
int value)
Sets an integer value associated with the given data holder.
|
void set(Object dataHolder, Object value)
This method may throw an UnsupportedOperationException.
void setBool(Object dataHolder, boolean value)
This method may throw an UnsupportedOperationException.
void setDouble(Object dataHolder, double value)
This method may throw an UnsupportedOperationException.
void setInt(Object dataHolder, int value)
This method may throw an UnsupportedOperationException.