Interface AlarmNotificationDesignerInterface
- All Known Implementing Classes:
- DesignerHook
public interface AlarmNotificationDesignerInterface
You may safely cast the module object for the "alarm-notification" module hook to this interface to gain
 access to the alarm notification API. For example:
 
 AlarmNotificationDesignerInterface alarming =
 (AlarmNotificationDesignerInterface) designerContext
                                          .getModule("com.inductiveautomation.alarm-notification");
 - 
Method SummaryModifier and TypeMethodDescriptionRetrieve all registered pipeline blocksvoidregisterPipelineBlock(PipelineBlockPrototype prototype) Add a new kind of pipeline block to the system.
- 
Method Details- 
registerPipelineBlockAdd a new kind of pipeline block to the system.
- 
getPipelineBlockTypesList<PipelineBlockPrototype> getPipelineBlockTypes()Retrieve all registered pipeline blocks
 
-