Package repast.simphony.visualization
Class AbstractDisplayData<T>
java.lang.Object
repast.simphony.visualization.AbstractDisplayData<T>
- All Implemented Interfaces:
DisplayData<T>
- Direct Known Subclasses:
DefaultDisplayData
,SyntheticDisplayData
Abstract implementation of DisplayData.
- Author:
- Nick Collier
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionint
Gets the number of projections to display.Gets an iterable over the projections to be displayed.int
Gets the number of ValueLayers to display.Gets an iterable over the ValueLayers to be displayed.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface repast.simphony.visualization.DisplayData
getContainer, objects
-
Field Details
-
projs
-
valueLayers
-
-
Constructor Details
-
AbstractDisplayData
public AbstractDisplayData()
-
-
Method Details
-
getProjections
Gets an iterable over the projections to be displayed.- Specified by:
getProjections
in interfaceDisplayData<T>
- Returns:
- an iterable over the projections to be displayed.
-
getValueLayers
Gets an iterable over the ValueLayers to be displayed.- Specified by:
getValueLayers
in interfaceDisplayData<T>
- Returns:
- an iterable over the ValueLayers to be displayed.
-
getProjectionCount
public int getProjectionCount()Gets the number of projections to display.- Specified by:
getProjectionCount
in interfaceDisplayData<T>
- Returns:
- the number of projections to display.
-
getValueLayerCount
public int getValueLayerCount()Gets the number of ValueLayers to display.- Specified by:
getValueLayerCount
in interfaceDisplayData<T>
- Returns:
- the number of ValueLayers to display.
-