Interface DesignerComponentStoreBridge
- 
- All Superinterfaces:
- Changeable
 - All Known Implementing Classes:
- DesignerComponentStoreBridgeImpl
 
 public interface DesignerComponentStoreBridge extends Changeable Provides a connected to a deeply selected component. Whenever any props or designerState changes on the deeply selected component, this object will fire change and those values will be available ingetProps()andgetDesignerState()
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description com.inductiveautomation.ignition.common.gson.JsonObjectgetDesignerState()com.inductiveautomation.ignition.common.gson.JsonObjectgetProps()voidupdateDesignerState(com.inductiveautomation.ignition.common.gson.JsonElement write)Calls updateDesignerState with the given object.voidwriteToProps(java.lang.String path, com.inductiveautomation.ignition.common.gson.JsonElement write)- 
Methods inherited from interface com.inductiveautomation.ignition.common.util.ChangeableaddChangeListener, removeChangeListener
 
- 
 
- 
- 
- 
Method Detail- 
getPropscom.inductiveautomation.ignition.common.gson.JsonObject getProps() - Returns:
- the props of the deeply selected component.
 
 - 
getDesignerStatecom.inductiveautomation.ignition.common.gson.JsonObject getDesignerState() - Returns:
- The designerState structure of the deeply selected component.
 
 - 
updateDesignerStatevoid updateDesignerState(com.inductiveautomation.ignition.common.gson.JsonElement write) Calls updateDesignerState with the given object. The values in the object will be merged in with the existing
 - 
writeToPropsvoid writeToProps(java.lang.String path, com.inductiveautomation.ignition.common.gson.JsonElement write)
 
- 
 
-