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 Summary
All 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
- 
registerPipelineBlock
void registerPipelineBlock(PipelineBlockPrototype prototype)
Add a new kind of pipeline block to the system. 
- 
getPipelineBlockTypes
java.util.List<PipelineBlockPrototype> getPipelineBlockTypes()
Retrieve all registered pipeline blocks 
 - 
 
 -