Uses of Class
org.simnet.coupling.InteractionMode

Packages that use InteractionMode
org.simbrain.network.actions The simbrain.network.action package contains the actions for responding to network events. 
org.simnet.coupling The simbrain.coupling package contains objects representing relations between an agent and an input or output node. 
org.simnet.interfaces The simnet.interfaces package contains all high level neural network classes, i.e. 
 

Uses of InteractionMode in org.simbrain.network.actions
 

Constructors in org.simbrain.network.actions with parameters of type InteractionMode
InteractionModeAction(String name, NetworkPanel networkPanel, InteractionMode interactionMode)
          Create a new interaction mode action with the specified name, network panel, and interaction mode.
 

Uses of InteractionMode in org.simnet.coupling
 

Fields in org.simnet.coupling declared as InteractionMode
static InteractionMode InteractionMode.BOTH_WAYS
          Both ways interaction mode.
static InteractionMode InteractionMode.NEITHER_WAY
          Neither way interaction mode.
static InteractionMode InteractionMode.NETWORK_TO_WORLD
          Network to world interaction mode.
static InteractionMode InteractionMode.WORLD_TO_NETWORK
          World to network interaction mode.
 

Uses of InteractionMode in org.simnet.interfaces
 

Methods in org.simnet.interfaces that return InteractionMode
 InteractionMode Network.getInteractionMode()
          Return the current interaction mode for this network panel.
 

Methods in org.simnet.interfaces with parameters of type InteractionMode
 void Network.setInteractionMode(InteractionMode interactionMode)
          Set the current interaction mode for this network panel to interactionMode.