Interface AlarmNotificationDesignerInterface
- 
- All Known Implementing Classes:
- DesignerHook
 
 public interface AlarmNotificationDesignerInterfaceYou 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 SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<PipelineBlockPrototype>getPipelineBlockTypes()Retrieve all registered pipeline blocksvoidregisterPipelineBlock(PipelineBlockPrototype prototype)Add a new kind of pipeline block to the system.
 
- 
- 
- 
Method Detail- 
registerPipelineBlockvoid registerPipelineBlock(PipelineBlockPrototype prototype) Add a new kind of pipeline block to the system.
 - 
getPipelineBlockTypesjava.util.List<PipelineBlockPrototype> getPipelineBlockTypes() Retrieve all registered pipeline blocks
 
- 
 
-