Uses of Interface
cytoscape.editor.CytoscapeEditor

Packages that use CytoscapeEditor
cytoscape.editor   
cytoscape.editor.editors   
cytoscape.editor.event   
cytoscape.editor.impl   
 

Uses of CytoscapeEditor in cytoscape.editor
 

Methods in cytoscape.editor that return CytoscapeEditor
static CytoscapeEditor CytoscapeEditorManager.initializeEditor(java.lang.String editorName, java.lang.String networkEditAdapterName)
          initialize the editor as a side-effect of registering it.
static CytoscapeEditor CytoscapeEditorManager.getEditorForView(cytoscape.view.CyNetworkView view)
          get the editor that is assigned to this CyNetworkView
static CytoscapeEditor CytoscapeEditorManager.getCurrentEditor()
          Returns the editor being currently used in Cytoscape.
 CytoscapeEditor CytoscapeEditorFactory.getEditor(java.lang.String editorType)
          Get the network editor, creating a new one if it doesn't already exist.
 

Methods in cytoscape.editor with parameters of type CytoscapeEditor
static NetworkEditEventAdapter CytoscapeEditorManager.initializeEditEventAdapter(CytoscapeEditor editor, java.lang.String adapterName)
          builds the named event handler and associates it with the input editor
static NetworkEditEventAdapter CytoscapeEditorManager.getNetworkEditEventAdapter(CytoscapeEditor editor)
          returns the network edit event adapter associated with the editor
static void CytoscapeEditorManager.setEditorForView(cytoscape.view.CyNetworkView view, CytoscapeEditor editor)
          set the editor for a CyNetworkView
static void CytoscapeEditorManager.setCurrentEditor(CytoscapeEditor currentEditor)
           
static void CytoscapeEditorManager.setDefaultEditor(CytoscapeEditor defaultEditor)
           
 NetworkEditEventAdapter CytoscapeEditorFactory.getNetworkEditEventAdapter(CytoscapeEditor editor)
          gets an instance of the NetworkEditEventAdaptor associated with the input editor The NetworkEditEventAdapter handles events that are associated with user input to the editor, such as mouse actions, drag/drop, keystrokes.
 

Uses of CytoscapeEditor in cytoscape.editor.editors
 

Classes in cytoscape.editor.editors that implement CytoscapeEditor
 class BasicCytoscapeEditor
          The BasicCytoscapeEditor provides base level graph editing functionality for Cytoscape, in particular the base level methods for adding nodes, edges, and context menu items.
 class DefaultCytoscapeEditor
          /** An example editor that extends the basic Cytoscape editor and is based upon a drag-and-drop and palette framework into which developers plug in semantics.
 class SimpleBioMoleculeEditor
          An example editor that extends the basic Cytoscape editor and is based upon a drag-and-drop and palette framework into which developers plug in semantics.
 class SimpleBioPAX_Editor
          An example "BioPAX-like" editor that extends the basic Cytoscape editor and is based upon a drag-and-drop and palette framework into which developers plug in semantics.
 

Uses of CytoscapeEditor in cytoscape.editor.event
 

Methods in cytoscape.editor.event that return CytoscapeEditor
 CytoscapeEditor NetworkEditEventAdapter.get_caller()
           
 CytoscapeEditor BasicNetworkEditEventHandler.get_caller()
           
 

Methods in cytoscape.editor.event with parameters of type CytoscapeEditor
 void NetworkEditEventAdapter.set_caller(CytoscapeEditor _caller)
           
 void BasicNetworkEditEventHandler.set_caller(CytoscapeEditor _caller)
           
 

Constructors in cytoscape.editor.event with parameters of type CytoscapeEditor
PaletteNetworkEditEventHandler(CytoscapeEditor caller)
           
PaletteNetworkEditEventHandler(CytoscapeEditor caller, cytoscape.view.CyNetworkView view)
           
BioPAXNetworkEditEventHandler(CytoscapeEditor caller)
           
BioPAXNetworkEditEventHandler(CytoscapeEditor caller, cytoscape.view.CyNetworkView view)
           
BasicNetworkEditEventHandler(CytoscapeEditor caller)
           
BasicNetworkEditEventHandler(CytoscapeEditor caller, cytoscape.view.CyNetworkView view)
           
 

Uses of CytoscapeEditor in cytoscape.editor.impl
 

Methods in cytoscape.editor.impl that return CytoscapeEditor
 CytoscapeEditor CytoscapeEditorFactoryImpl.getEditor(java.lang.String editorType, java.util.List args)
          get the Cytoscape editor for the specified type
 CytoscapeEditor CytoscapeEditorFactoryImpl.getEditor(java.lang.String editorType)
           
 

Methods in cytoscape.editor.impl with parameters of type CytoscapeEditor
 NetworkEditEventAdapter CytoscapeEditorFactoryImpl.getNetworkEditEventAdapter(CytoscapeEditor editor)
          gets an instance of the NetworkEditEventAdaptor associated with the input editor The NetworkEditEventAdapter handles events that are associated with user input to the editor, such as mouse actions, drag/drop, keystrokes.