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 |
---|---|
LabelCallback<TEntity> |
LabelVisualizer.getCallback()
Gets the
LabelCallback used to determine the label. |
static <TEntity> LabelCallback<TEntity> |
LabelCallback.of(LabelCallback.Function<TEntity> f)
Create a delegate for the given interface.
|
static <TEntity> LabelCallback<TEntity> |
LabelCallback.of(LabelCallback.Function<TEntity> f,
Class<?> targetClass,
String methodName,
Class<?>... methodParameterClasses)
Create a delegate for the given interface.
|
static <TEntity> LabelCallback<TEntity> |
LabelCallback.of(LabelCallback.Function<TEntity> f,
Object targetObject,
String methodName,
Class<?>... methodParameterClasses)
Create a delegate for the given interface.
|
Modifier and Type | Method and Description |
---|---|
void |
LabelVisualizer.setCallback(LabelCallback<TEntity> value)
Sets the
LabelCallback used to determine the label. |
Constructor and Description |
---|
LabelVisualizer(TypeLiteral<TEntity> typeLiteralTEntity,
EntitySet<TEntity> entities,
LabelCallback<TEntity> callback)
Creates a new instance with the provided
EntitySet and LabelCallback . |
LabelVisualizer(TypeLiteral<TEntity> typeLiteralTEntity,
EntitySet<TEntity> entities,
LabelCallback<TEntity> callback,
SetHint setHint)
|