Object
hdf.view.TableView.DataProviderFactory
A Factory class to return a concrete class implementing the IDataProvider
interface in order to provide data for a NatTable.
- Version:
- 1.0 2/9/2019
- Author:
- Jordan T. Henderson
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic class
The base DataProvider which pulls data from a given Array object using direct indices. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptiongetDataProvider
(DataFormat dataObject, Object dataBuf, boolean dataTransposed) Get the Data Display Provider for the supplied data object
-
Constructor Details
-
DataProviderFactory
public DataProviderFactory()
-
-
Method Details
-
getDataProvider
public static DataProviderFactory.HDFDataProvider getDataProvider(DataFormat dataObject, Object dataBuf, boolean dataTransposed) throws Exception Get the Data Display Provider for the supplied data object- Parameters:
dataObject
- the data objectdataBuf
- the data buffer to usedataTransposed
- if the data should be transposed- Returns:
- the provider instance
- Throws:
Exception
- if a failure occurred
-