Interface DisplaySet
-
- All Known Implementing Classes:
AbstractDisplaySet,DefaultDisplaySet,GenericDisplaySet,KickResponseDisplaySet,MultiturnDisplaySet,TrajectoryDisplaySet,TrimDisplaySet
public interface DisplaySetADisplaySetdefines swing components to show in the aloha swing gui for a specific type of measurement.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description javax.swing.JPanelgetDetailPanel()this method has to return the panel which is shown in the gui to display details of the measurment.java.util.List<cern.jdve.viewer.DVView>getDvViews()this method shall return all views, that shall be displayed in the dataviewer.voidrefresh()refresh all the displayed values.
-
-
-
Method Detail
-
getDetailPanel
javax.swing.JPanel getDetailPanel()
this method has to return the panel which is shown in the gui to display details of the measurment.- Returns:
- an appropriate panel
-
getDvViews
java.util.List<cern.jdve.viewer.DVView> getDvViews()
this method shall return all views, that shall be displayed in the dataviewer.- Returns:
- a list of views
-
refresh
void refresh()
refresh all the displayed values.
-
-