Package org.cytoscape.app.swing
Interface CySwingAppAdapter
-
- All Superinterfaces:
CyAppAdapter
@Deprecated public interface CySwingAppAdapter extends CyAppAdapter
Deprecated.(As of Cytoscape 3.7) Support for simple apps will be removed in a future version of Cytoscape, please provide an OSGi bundle app instead.A Swing-specific extension ofCyAppAdapter
that serves as a Java-only api providing access to core Cytoscape functionality. This class will provide access the various Swing-specific Manager and Factory interfaces in addition to those defined inCyAppAdapter
. Through these interfaces developers will have access to most management and creational facilities defined in the Cytoscape API. This is a convenience interface intended make app development as simple as possible.Module:
swing-app-api
To use this in your app, include the following dependency in your POM:
<dependency> <groupId>org.cytoscape</groupId> <artifactId>swing-app-api</artifactId> </dependency>
Cytoscape Backwards Compatibility (API Interface): We expect that this interface will be used but not implemented by developers using this interface. As such, we reserve the right to add methods to the interface as part of minor version upgrades. We will not remove methods for any changes other than major version upgrades.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description CySwingApplication
getCySwingApplication()
Deprecated.Returns an instance ofCySwingApplication
.DialogTaskManager
getDialogTaskManager()
Deprecated.Returns an instance ofDialogTaskManager
.PanelTaskManager
getPanelTaskManager()
Deprecated.Returns an instance ofPanelTaskManager
.-
Methods inherited from interface org.cytoscape.app.CyAppAdapter
get_ApplyPreferredLayoutTaskFactory, get_ApplyVisualStyleTaskFactory, get_CloneNetworkTaskFactory, get_CollapseGroupTaskFactory, get_ConnectSelectedNodesTaskFactory, get_CreateNetworkViewTaskFactory, get_DeleteColumnTaskFactory, get_DeleteSelectedNodesAndEdgesTaskFactory, get_DeleteTableTaskFactory, get_DeselectAllEdgesTaskFactory, get_DeselectAllNodesTaskFactory, get_DeselectAllTaskFactory, get_DestroyNetworkTaskFactory, get_DestroyNetworkViewTaskFactory, get_EditNetworkTitleTaskFactory, get_ExpandGroupTaskFactory, get_ExportNetworkImageTaskFactory, get_ExportNetworkViewTaskFactory, get_ExportSelectedTableTaskFactory, get_ExportTableTaskFactory, get_ExportVizmapTaskFactory, get_GroupNodesTaskFactory, get_HideSelectedEdgesTaskFactory, get_HideSelectedNodesTaskFactory, get_HideSelectedTaskFactory, get_InvertSelectedEdgesTaskFactory, get_InvertSelectedNodesTaskFactory, get_LoadNetworkFileTaskFactory, get_LoadNetworkURLTaskFactory, get_LoadTableFileTaskFactory, get_LoadTableURLTaskFactory, get_LoadVizmapFileTaskFactory, get_MapGlobalToLocalTableTaskFactory, get_MapTableToNetworkTablesTaskFactory, get_NewEmptyNetworkViewFactory, get_NewNetworkSelectedNodesAndEdgesTaskFactory, get_NewNetworkSelectedNodesOnlyTaskFactory, get_NewSessionTaskFactory, get_OpenSessionTaskFactory, get_RenameColumnTaskFactory, get_SaveSessionAsTaskFactory, get_SelectAdjacentEdgesTaskFactory, get_SelectAllEdgesTaskFactory, get_SelectAllNodesTaskFactory, get_SelectAllTaskFactory, get_SelectConnectedNodesTaskFactory, get_SelectFirstNeighborsNodeViewTaskFactory, get_SelectFirstNeighborsTaskFactory, get_SelectFirstNeighborsTaskFactoryInEdge, get_SelectFirstNeighborsTaskFactoryOutEdge, get_SelectFromFileListTaskFactory, get_UnGroupNodesTaskFactory, get_UnGroupTaskFactory, get_UnHideAllEdgesTaskFactory, get_UnHideAllNodesTaskFactory, get_UnHideAllTaskFactory, getAvailableCommands, getCommandExecutorTaskFactory, getCoreProperties, getCyApplicationConfiguration, getCyApplicationManager, getCyEventHelper, getCyGroupAggregationManager, getCyGroupFactory, getCyGroupManager, getCyLayoutAlgorithmManager, getCyNetworkFactory, getCyNetworkManager, getCyNetworkViewFactory, getCyNetworkViewManager, getCyNetworkViewReaderManager, getCyNetworkViewWriterManager, getCyPropertyReaderManager, getCyPropertyWriterManager, getCyRootNetworkManager, getCyServiceRegistrar, getCySessionManager, getCySessionReaderManager, getCySessionWriterManager, getCyTableFactory, getCyTableManager, getCyTableReaderManager, getCyTableWriterManager, getCyVersion, getDataSourceManager, getPresentationWriterManager, getRenderingEngineManager, getStreamUtil, getTaskManager, getTunablePropertySerializerFactory, getUndoSupport, getVisualMappingFunctionContinuousFactory, getVisualMappingFunctionDiscreteFactory, getVisualMappingFunctionPassthroughFactory, getVisualMappingManager, getVisualStyleFactory
-
-
-
-
Method Detail
-
getDialogTaskManager
DialogTaskManager getDialogTaskManager()
Deprecated.Returns an instance ofDialogTaskManager
.- Returns:
- an instance of
DialogTaskManager
.
-
getPanelTaskManager
PanelTaskManager getPanelTaskManager()
Deprecated.Returns an instance ofPanelTaskManager
.- Returns:
- an instance of
PanelTaskManager
.
-
getCySwingApplication
CySwingApplication getCySwingApplication()
Deprecated.Returns an instance ofCySwingApplication
.- Returns:
- an instance of
CySwingApplication
.
-
-