Interface IDataView
-
- All Known Implementing Classes:
GeneralDataView2D
,GeneralDataView2D3D
,GeneralDataView3D
,LocalDataView2D
public interface IDataView
View used by an observer to display part of the environment
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
SIMPLE_VIEW_2D
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Object[]
getObjects()
Returns a list of objects in this viewjava.lang.String
getType()
Returns the type of the view.void
init(IEnvironmentSpace space, java.util.Map properties)
Initialize the view.void
update(IEnvironmentSpace space)
Updates the view.
-
-
-
Field Detail
-
SIMPLE_VIEW_2D
static final java.lang.String SIMPLE_VIEW_2D
- See Also:
- Constant Field Values
-
-
Method Detail
-
init
void init(IEnvironmentSpace space, java.util.Map properties)
Initialize the view.
-
getType
java.lang.String getType()
Returns the type of the view.- Returns:
- type of the view
-
getObjects
java.lang.Object[] getObjects()
Returns a list of objects in this view- Returns:
- list of objects
-
update
void update(IEnvironmentSpace space)
Updates the view.- Parameters:
space
- the space of the view
-
-