Uses of Class
org.simbrain.network.EditMode

Packages that use EditMode
org.simbrain.network The simbrain.network package contains the Piccolo-based zoomable GUI for designing, editing, and running neural networks. 
org.simbrain.network.actions The simbrain.network.action package contains the actions for responding to network events. 
 

Uses of EditMode in org.simbrain.network
 

Fields in org.simbrain.network declared as EditMode
static EditMode EditMode.PAN
          Pan edit mode.
static EditMode EditMode.SELECTION
          Selection edit mode.
static EditMode EditMode.ZOOM_IN
          Zoom in edit mode.
static EditMode EditMode.ZOOM_OUT
          Zoom out edit mode.
 

Methods in org.simbrain.network that return EditMode
 EditMode NetworkPanel.getEditMode()
          Return the current edit mode for this network panel.
 

Methods in org.simbrain.network with parameters of type EditMode
 void NetworkPanel.setEditMode(EditMode editMode)
          Set the current edit mode for this network panel to editMode.
 

Uses of EditMode in org.simbrain.network.actions
 

Constructors in org.simbrain.network.actions with parameters of type EditMode
EditModeAction(String name, NetworkPanel networkPanel, EditMode editMode)
          Create a new edit mode action with the specified name, network panel, and edit mode.