Class ClientStepRegistry
- java.lang.Object
- 
- com.inductiveautomation.ignition.common.util.AbstractChangeable
- 
- com.inductiveautomation.sfc.client.api.ClientStepRegistry
 
 
- 
- All Implemented Interfaces:
- Changeable,- StepRegistry
 - Direct Known Subclasses:
- ClientStepRegistryImpl
 
 public abstract class ClientStepRegistry extends AbstractChangeable implements StepRegistry, Changeable The ClientStepRegistry is where you need to add your ClientStepFactory to add a step. You can obtain the ClientStepRegistry via getInstance(ClientContext).You'll need to do this in both Client and Desginer hooks. In the Designer, you need to also add a StepConfigFactory as well. 
- 
- 
Field Summary- 
Fields inherited from class com.inductiveautomation.ignition.common.util.AbstractChangeablechangeEvent, listenerList
 
- 
 - 
Constructor SummaryConstructors Constructor Description ClientStepRegistry()
 - 
Method SummaryAll Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract java.util.Collection<ClientStepFactory>getFactories()Returns a read-only collection of the registered factoriesstatic ClientStepRegistrygetInstance(ClientContext context)abstract com.google.common.base.Optional<ClientStepFactory>getStepFactory(java.lang.String id)Looks up the delegate for the given step factory id.abstract voidregister(ClientStepFactory factory)- 
Methods inherited from class com.inductiveautomation.ignition.common.util.AbstractChangeableaddChangeListener, fireStateChanged, getChangeListeners, removeChangeListener
 - 
Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 - 
Methods inherited from interface com.inductiveautomation.ignition.common.util.ChangeableaddChangeListener, removeChangeListener
 
- 
 
- 
- 
- 
Method Detail- 
getInstancepublic static ClientStepRegistry getInstance(ClientContext context) 
 - 
registerpublic abstract void register(ClientStepFactory factory) 
 - 
getStepFactorypublic abstract com.google.common.base.Optional<ClientStepFactory> getStepFactory(java.lang.String id) Description copied from interface:StepRegistryLooks up the delegate for the given step factory id.- Specified by:
- getStepFactoryin interface- StepRegistry
 
 - 
getFactoriespublic abstract java.util.Collection<ClientStepFactory> getFactories() Returns a read-only collection of the registered factories
 
- 
 
-