- All Known Implementing Classes:
- HDFView
public interface DataViewManager
Defines a list of APIs for the main HDFView windows
- Version:
- 2.4 9/6/2007
- Author:
- Peter X. Cao
- 
Method SummaryModifier and Type Method Description voidaddDataView(DataView dataView)Data content is displayed, add the dataview to the main windowsDataViewgetDataView(HObject dataObject)Returns DataView that contains the specified data object.TreeViewgetTreeView()voidremoveDataView(DataView dataView)Data content is closed, remove the dataview from the main windowvoidshowError(String errMsg)Display error messagevoidshowStatus(String msg)Display feedback message
- 
Method Details- 
addDataViewData content is displayed, add the dataview to the main windows- Parameters:
- dataView- the dataView whose presence in the main view is to be added.
 
- 
removeDataViewData content is closed, remove the dataview from the main window- Parameters:
- dataView- the dataView whose presence in the main view is to be removed.
 
- 
getDataViewReturns DataView that contains the specified data object. It is useful to avoid redundant display of data object that is opened already.- Parameters:
- dataObject- the object whose presence in the main view is to be tested.
- Returns:
- DataView contains the specified data object, null if the data object is not displayed.
 
- 
showStatusDisplay feedback message- Parameters:
- msg- the status message to display
 
- 
showErrorDisplay error message- Parameters:
- errMsg- the error message to display
 
- 
getTreeView- Returns:
- the current TreeView
 
 
-