Interface DisplaySetFactory
-
- All Superinterfaces:
AlohaPlugin
- All Known Implementing Classes:
AbstractDisplaySetFactory,KickResponsePlugin,MultiturnPlugin,TrajectoryPlugin,TrimPlugin
public interface DisplaySetFactory extends AlohaPlugin
This is the interface of a class that creates Displaysets from a measurement.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DisplaySetcreateDisplaySet(Measurement measurement)this method must return a new instance of aDisplaySetwhich correspond to the measurement.-
Methods inherited from interface cern.accsoft.steering.aloha.plugin.api.AlohaPlugin
getName
-
-
-
-
Method Detail
-
createDisplaySet
DisplaySet createDisplaySet(Measurement measurement)
this method must return a new instance of aDisplaySetwhich correspond to the measurement. (If the factory can handle this kind of measurement) If the Factory cannot create aDisplaySetfrom the given measurement, then this method has to return null.- Parameters:
measurement- the measurement for which to create a DisplaySet- Returns:
- the new displaysets if the measurement is handled, null otherwise.
-
-