Object
hdf.view.MetaDataView.DefaultBaseMetaDataView
- All Implemented Interfaces:
DataView
,MetaDataView
- Direct Known Subclasses:
DefaultLinkMetaDataView
DefaultBaseMetaDataView is a default implementation of the MetaDataView which
is used to show data properties of an object. Data properties include
attributes and general object information such as the object type, data type
and data space.
This base class is responsible for displaying an object's general information
and attributes, since these are not object-specific. Subclasses of this class
are responsible for displaying any extra object-specific content by
overriding the addObjectSpecificContent() method.
- Version:
- 1.0 4/20/2018
- Author:
- Jordan T. Henderson
-
Field Summary
Modifier and TypeFieldDescriptionprotected final org.eclipse.swt.widgets.Composite
The attribute metadata paneprotected final org.eclipse.swt.widgets.TabFolder
The metadata containerprotected org.eclipse.swt.graphics.Font
The current fontprotected HObject
The HDF data objectprotected final org.eclipse.swt.widgets.Display
The default displayprotected final org.eclipse.swt.widgets.Composite
The general metadata paneprotected boolean
The HDF data object is hdf4 typeprotected boolean
The HDF data object is hdf5 typeprotected boolean
The HDF data object is netcdf typeprotected final DataViewManager
The view manger referenceFields inherited from interface hdf.view.DataView.DataView
DATAVIEW_IMAGE, DATAVIEW_TABLE, DATAVIEW_UNKNOWN
-
Constructor Summary
ConstructorDescriptionDefaultBaseMetaDataView
(org.eclipse.swt.widgets.Composite parentComposite, DataViewManager viewer, HObject theObj) The metadata view interface for displaying metadata information -
Method Summary
Modifier and TypeMethodDescriptionaddAttribute
(HObject obj) Add an attribute to a data object.protected abstract void
Additional metadata to displaydeleteAttribute
(HObject obj) Delete an attribute from a data object.Get the data object displayed in this data viewervoid
updateFont
(org.eclipse.swt.graphics.Font font) Updates the current font.
-
Field Details
-
display
The default display -
viewManager
The view manger reference -
contentTabFolder
The metadata container -
attributeInfoPane
The attribute metadata pane -
generalObjectInfoPane
The general metadata pane -
curFont
The current font -
dataObject
The HDF data object -
isH5
The HDF data object is hdf5 type -
isH4
The HDF data object is hdf4 type -
isN3
The HDF data object is netcdf type
-
-
Constructor Details
-
DefaultBaseMetaDataView
public DefaultBaseMetaDataView(org.eclipse.swt.widgets.Composite parentComposite, DataViewManager viewer, HObject theObj) The metadata view interface for displaying metadata information- Parameters:
parentComposite
- the parent visual objectviewer
- the viewer to usetheObj
- the object to display the metadata info
-
-
Method Details
-
addObjectSpecificContent
Additional metadata to display -
getDataObject
Description copied from interface:DataView
Get the data object displayed in this data viewer- Specified by:
getDataObject
in interfaceDataView
- Returns:
- the data object displayed in this data viewer
-
addAttribute
Description copied from interface:MetaDataView
Add an attribute to a data object.- Specified by:
addAttribute
in interfaceMetaDataView
- Parameters:
obj
- the attribute to add- Returns:
- the Attribute object
-
deleteAttribute
Description copied from interface:MetaDataView
Delete an attribute from a data object.- Specified by:
deleteAttribute
in interfaceMetaDataView
- Parameters:
obj
- the attribute to delte- Returns:
- the Attribute object
-
updateFont
Updates the current font.- Parameters:
font
- the new font
-