Uses of Class
edu.stanford.hci.dtools.statechart.model.ComponentConnectionModel

Packages that use ComponentConnectionModel
edu.stanford.hci.dtools.actions   
edu.stanford.hci.dtools.deviceeditor   
edu.stanford.hci.dtools.deviceeditor.components   
edu.stanford.hci.dtools.deviceeditor.components.commands   
edu.stanford.hci.dtools.statechart   
edu.stanford.hci.dtools.statechart.model   
edu.stanford.hci.dtools.statechart.model.commands   
 

Uses of ComponentConnectionModel in edu.stanford.hci.dtools.actions
 

Method parameters in edu.stanford.hci.dtools.actions with type arguments of type ComponentConnectionModel
 void ExportDeviceAction.setComponentConnectionMapping(java.util.Map<StateModel,java.util.List<ComponentConnectionModel>> map)
           
 

Uses of ComponentConnectionModel in edu.stanford.hci.dtools.deviceeditor
 

Method parameters in edu.stanford.hci.dtools.deviceeditor with type arguments of type ComponentConnectionModel
 void DeviceEditor.export(java.util.Map<StateModel,java.util.List<ComponentConnectionModel>> map)
           
 

Uses of ComponentConnectionModel in edu.stanford.hci.dtools.deviceeditor.components
 

Method parameters in edu.stanford.hci.dtools.deviceeditor.components with type arguments of type ComponentConnectionModel
 void DeviceDiagramModel.export(java.util.Map<StateModel,java.util.List<ComponentConnectionModel>> map)
           
 

Uses of ComponentConnectionModel in edu.stanford.hci.dtools.deviceeditor.components.commands
 

Method parameters in edu.stanford.hci.dtools.deviceeditor.components.commands with type arguments of type ComponentConnectionModel
 void IOComponentDeleteCommand.execute(java.util.Map<StateModel,java.util.List<ComponentConnectionModel>> map)
           
 

Uses of ComponentConnectionModel in edu.stanford.hci.dtools.statechart
 

Method parameters in edu.stanford.hci.dtools.statechart with type arguments of type ComponentConnectionModel
 void StatechartEditor.setDeviceConfiguration(DeviceConfiguration newConfig, java.util.Map<IOComponent,IOComponent> deviceMapping, java.util.Map<StateModel,java.util.List<ComponentConnectionModel>> componentConnectionMap)
          Given a new device configuration and mapping, updates all of the children with the new information
 

Uses of ComponentConnectionModel in edu.stanford.hci.dtools.statechart.model
 

Method parameters in edu.stanford.hci.dtools.statechart.model with type arguments of type ComponentConnectionModel
 void StateModel.updateDeviceConfiguration(DeviceConfiguration deviceConfig, IOComponentHashMap deviceMapping, java.util.Map<StateModel,java.util.List<ComponentConnectionModel>> componentConnectionMap)
          Sets the state up with whatever the current device configuaration is.
 void DiagramModel.updateDeviceConfiguration(DeviceConfiguration newConfig, IOComponentHashMap deviceMapping, java.util.Map<StateModel,java.util.List<ComponentConnectionModel>> componentConnectionMap)
          Call when the device configuration has changed and the diagram should propogate this change amongst its children.
 

Constructors in edu.stanford.hci.dtools.statechart.model with parameters of type ComponentConnectionModel
SignalPair(ComponentConnectionModel connection)
           
SignalPair(ControlSignalSource theSource, ControlSignalTarget theTarget, ComponentConnectionModel connection)
           
 

Uses of ComponentConnectionModel in edu.stanford.hci.dtools.statechart.model.commands
 

Methods in edu.stanford.hci.dtools.statechart.model.commands that return types with arguments of type ComponentConnectionModel
 java.util.Map<StateModel,java.util.List<ComponentConnectionModel>> ComponentTransitionsDeleteCommand.getComponentConnectionMap()
           
 

Constructor parameters in edu.stanford.hci.dtools.statechart.model.commands with type arguments of type ComponentConnectionModel
SetDeviceConfigurationCommand(DiagramModel diagram, DeviceConfiguration newConfig, java.util.Map<IOComponent,IOComponent> map, java.util.Map<StateModel,java.util.List<ComponentConnectionModel>> componentMap)