Uses of Interface
edu.stanford.hci.dtools.deviceeditor.components.ControlSignalSource

Packages that use ControlSignalSource
edu.stanford.hci.dtools.deviceeditor.components   
edu.stanford.hci.dtools.statechart.model   
 

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

Subinterfaces of ControlSignalSource in edu.stanford.hci.dtools.deviceeditor.components
 interface ContinuousControlSignalSource
          Interface which defines all control signal sources which can be represented through continuous values (slider value) This code is partially based on code that is copyright (c) 2004 Elias Volanakis.
 interface DiscreteControlSignalSource
          Interface which defines all control signal sources which can be represented through discrete values (i.e.
 

Methods in edu.stanford.hci.dtools.deviceeditor.components that return ControlSignalSource
 ControlSignalSource IOComponent.getDefaultControlSignalSource()
          Children that can provide or accept control signals should override to return a default signal handler here.
 

Methods in edu.stanford.hci.dtools.deviceeditor.components that return types with arguments of type ControlSignalSource
 java.util.List<ControlSignalSource> IOComponent.getControlSignalSources()
           
 

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

Methods in edu.stanford.hci.dtools.statechart.model that return ControlSignalSource
 ControlSignalSource SignalPair.getSignalSource()
           
 

Methods in edu.stanford.hci.dtools.statechart.model with parameters of type ControlSignalSource
 void SignalPair.setSignalSource(ControlSignalSource signalSource)
           
 

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