Package | Description |
---|---|
agi.foundation.tracking |
Contains types for acquiring, analyzing and archiving dynamic data, such as those found in real-time feeds or simulation environments.
|
Modifier and Type | Method and Description |
---|---|
ModelCallback<TEntity> |
ModelVisualizer.getCallback()
Gets the
ModelCallback used to retrieve a model for each entity. |
static <TEntity> ModelCallback<TEntity> |
ModelCallback.of(ModelCallback.Function<TEntity> f)
Create a delegate for the given interface.
|
static <TEntity> ModelCallback<TEntity> |
ModelCallback.of(ModelCallback.Function<TEntity> f,
Class<?> targetClass,
String methodName,
Class<?>... methodParameterClasses)
Create a delegate for the given interface.
|
static <TEntity> ModelCallback<TEntity> |
ModelCallback.of(ModelCallback.Function<TEntity> f,
Object targetObject,
String methodName,
Class<?>... methodParameterClasses)
Create a delegate for the given interface.
|
Modifier and Type | Method and Description |
---|---|
void |
ModelVisualizer.setCallback(ModelCallback<TEntity> value)
Sets the
ModelCallback used to retrieve a model for each entity. |
Constructor and Description |
---|
ModelVisualizer(TypeLiteral<TEntity> typeLiteralTEntity,
EntitySet<TEntity> entities,
ModelCallback<TEntity> callback)
Creates a new instance with the provided
EntitySet and ModelCallback . |