Class AbstractDesignerModuleHook

java.lang.Object
com.inductiveautomation.ignition.designer.model.AbstractDesignerModuleHook
All Implemented Interfaces:
LocationRenderingUpdater, DesignerModuleHook
Direct Known Subclasses:
DesignerHook, DesignerHook, ReportingDesignerHook, SFCDesignerHook, VisionDesignerImpl

public abstract class AbstractDesignerModuleHook extends Object implements DesignerModuleHook

Base class for all designer module hook implementations. All methods are given empty implementations. It is expected that subclasses will override any methods that they wish to give real implementations.

Best practice is to subclass this class rather than implement DesignerModuleHook directly, so that when new methods get added to the interface, your module automatically inherits an empty implementation of the new method rather than breaking with a NoSuchMethodError.