Uses of Interface
org.cytoscape.model.CyColumn
Packages that use CyColumn
Package
Description
This package defines the various interfaces, abstract classes, and enums
that represent the Cytoscape Swing Application API.
This package provides an API for creating and managing
groups in Cytoscape.
An api for configuring
CyGroup
s.This package has the core interfaces of network and
table data structures that are foundational to Cytoscape.
This package provides base classes for common task factory types as well as their associated task types found in Cytoscape.
This package include a set of task factory interfaces that allow
the modification or editing of various objects within Cytoscape.
Definitions for View-Model related events and their listeners.
This package provides an API for augmenting a
RenderingEngine
s
node rendering with custom graphics.Visual Mapping basic API module.
-
Uses of CyColumn in org.cytoscape.application.swing
Methods in org.cytoscape.application.swing that return CyColumnModifier and TypeMethodDescriptionCyColumnComboBox.getSelectedItem()
Override getSelectedItem() and use covariant return type to change return type to CyColumn.Method parameters in org.cytoscape.application.swing with type arguments of type CyColumnModifier and TypeMethodDescriptionvoid
CyColumnSelector.update(Collection<CyColumn> columns, Collection<String> selectedColumnNames)
Updates the control to display the given CyColumn objects.Constructor parameters in org.cytoscape.application.swing with type arguments of type CyColumnModifierConstructorDescriptionCyColumnComboBox(CyColumnPresentationManager columnPresentationManager, Collection<CyColumn> columns)
Creates a CyColumnComboBox with all entries enabled.CyColumnComboBox(CyColumnPresentationManager columnPresentationManager, Collection<CyColumn> columns, Predicate<CyColumn> enabledPredicate)
Creates a CyColumnComboBox.CyColumnComboBox(CyColumnPresentationManager columnPresentationManager, Collection<CyColumn> columns, Predicate<CyColumn> enabledPredicate)
Creates a CyColumnComboBox. -
Uses of CyColumn in org.cytoscape.group
Methods in org.cytoscape.group with parameters of type CyColumnModifier and TypeMethodDescriptionAggregator<?>
CyGroupSettingsManager.getAggregator(CyGroup group, CyColumn column)
Get theAggregator
that will be used to aggregate the values in a specificCyColumn
for all of the nodes in a group onto the corresponding column in the group node.Aggregator<?>
CyGroupSettingsManager.getOverrideAggregation(CyGroup group, CyColumn column)
Get the override aggregation setting for a column (if any) in a specific group.Aggregator<?>
CyGroupSettingsManager.getOverrideAggregation(CyColumn column)
Get the override aggregation setting for a column (if any).void
CyGroupSettingsManager.setOverrideAggregation(CyGroup group, CyColumn column, Aggregator<?> agg)
set the override aggregation setting for a column in a group (if any).void
CyGroupSettingsManager.setOverrideAggregation(CyColumn column, Aggregator<?> agg)
set the override aggregation setting for a column (if any). -
Uses of CyColumn in org.cytoscape.group.data
Methods in org.cytoscape.group.data with parameters of type CyColumn -
Uses of CyColumn in org.cytoscape.model
Methods in org.cytoscape.model that return CyColumnModifier and TypeMethodDescriptionReturns the column with the specified fully-qualified name.default CyColumn
Returns the column for the specified name in the specified namespace.CyTable.getPrimaryKey()
Returns the column type of the primary key for this table.Methods in org.cytoscape.model that return types with arguments of type CyColumnModifier and TypeMethodDescriptionCyTable.getColumns()
Returns the column types for all columns in this table.default Collection<CyColumn>
CyTable.getColumns(String namespace)
Returns the column types for all columns in this table in the given namespace. -
Uses of CyColumn in org.cytoscape.task
Fields in org.cytoscape.task declared as CyColumnModifier and TypeFieldDescriptionprotected CyColumn
AbstractTableCellTask.column
protected CyColumn
AbstractTableColumnTask.column
TheCyColumn
that descendants will operate on.Methods in org.cytoscape.task with parameters of type CyColumnModifier and TypeMethodDescriptionDynamicTaskFactoryProvisioner.createFor(TableCellTaskFactory factory, CyColumn column, Object primaryKeyValue)
DynamicTaskFactoryProvisioner.createFor(TableColumnTaskFactory factory, CyColumn column)
TableCellTaskFactory.createTaskIterator(CyColumn column, Object primaryKeyValue)
Used to provision this factory with aCyColumn
and a primary key that will be used to create tasks.TableColumnTaskFactory.createTaskIterator(CyColumn column)
Used to provision this factory with aCyColumn
that will be used to create tasks.default boolean
If this task factory implements theTogglable
interface then this method determines if the button or check box is on or off.default boolean
If this task factory implements theTogglable
interface then this method determines if the button or check box is on or off.boolean
Returns true if the supplied column and value are not null.boolean
Returns true if the supplied column is not null.boolean
Returns true if this task factory is ready to produce a TaskIterator.boolean
Returns true if this task factory is ready to produce a TaskIterator.Constructors in org.cytoscape.task with parameters of type CyColumnModifierConstructorDescriptionAbstractTableCellTask(CyColumn column, Object primaryKeyValue)
Initializes a Task that needs to operate on a CyTable cell entry.AbstractTableColumnTask(CyColumn column)
Initializes a Task that needs to operate on a CyTable column. -
Uses of CyColumn in org.cytoscape.task.edit
Methods in org.cytoscape.task.edit with parameters of type CyColumnModifier and TypeMethodDescriptionImportDataTableTaskFactory.createTaskIterator(CyTable globalTable, boolean selectedNetworksOnly, boolean loadToUnassignedTable, List<CyNetwork> networkList, CyRootNetwork rootNetwork, CyColumn targetJoinColumn, Class<? extends CyIdentifiable> tableType)
Creates a task iterator for importing a table data in a network data table.JoinTablesTaskTaskFactory.createTaskIterator(CyTable globalTable, boolean selectedNetworksOnly, List<CyNetwork> networkList, CyRootNetwork rootNetwork, CyColumn targetJoinColumn, Class<? extends CyIdentifiable> tableType)
MergeTablesTaskFactory.createTaskIterator(CyTable sourceTable, CyTable targetTable, List<String> sourceColumnsList, String sourceKeyColumn, boolean mergeColumnVirtual, boolean mapToNetworks, boolean selectedNetworksOnly, List<CyNetwork> networkList, CyRootNetwork rootNetwork, CyColumn targetJoinColumn, Class<? extends CyIdentifiable> tableType)
Creates a task iterator for merging two data tables.RenameColumnTaskFactory.createTaskIterator(CyColumn column, String newColumnName)
Create a task iterator for renaming a selected column. -
Uses of CyColumn in org.cytoscape.util.json
Methods in org.cytoscape.util.json with parameters of type CyColumnModifier and TypeMethodDescriptionReturns a JSON representation of CyColumn.Returns a JSON representation of a single CyEdge and its relevant data.Returns a JSON representation of a single CyNode and its relevant data.Returns a JSON representation of a table row.Method parameters in org.cytoscape.util.json with type arguments of type CyColumnModifier and TypeMethodDescriptionCyJSONUtil.cyColumnsToJson(Collection<CyColumn> collection)
Returns a list of references (via column name) for a collection of CyColumn. -
Uses of CyColumn in org.cytoscape.view.model.events
Methods in org.cytoscape.view.model.events that return types with arguments of type CyColumnModifier and TypeMethodDescriptionAboutToRemoveColumnViewEvent.getColumnView()
AddedColumnViewEvent.getColumnView()
Constructor parameters in org.cytoscape.view.model.events with type arguments of type CyColumnModifierConstructorDescriptionAboutToRemoveColumnViewEvent(CyTableView source, View<CyColumn> columnView)
AddedColumnViewEvent(CyTableView source, View<CyColumn> columnView)
-
Uses of CyColumn in org.cytoscape.view.model.table
Methods in org.cytoscape.view.model.table that return types with arguments of type CyColumnModifier and TypeMethodDescriptionCyTableView.getColumnView(long viewSuid)
Returns the View for the specified column using its view SUID as key.CyTableView.getColumnView(String fullyQualifiedName)
Returns the View for a specified column.CyTableView.getColumnView(CyColumn column)
Returns the View for a specified column.CyTableView.getColumnViews()
Returns all column views in this table view, in the same order asCyTable.getColumns()
.Methods in org.cytoscape.view.model.table with parameters of type CyColumnModifier and TypeMethodDescriptionCyTableView.getColumnView(CyColumn column)
Returns the View for a specified column. -
Uses of CyColumn in org.cytoscape.view.presentation.customgraphics
Methods in org.cytoscape.view.presentation.customgraphics with parameters of type CyColumnModifier and TypeMethodDescriptiondefault void
Cy2DGraphicLayer.draw(Graphics2D g, CyTableView tableView, CyColumn column, CyRow row)
This method is called by Cytoscape when aCyTableView
is being updated in order to let the custom graphics draw onto its cells. -
Uses of CyColumn in org.cytoscape.view.vizmap
Method parameters in org.cytoscape.view.vizmap with type arguments of type CyColumnModifier and TypeMethodDescriptionvoid
Apply Visual Style to the entire table view.TableVisualMappingManager.getVisualStyle(View<CyColumn> viewModel)
Returns theVisualStyle
associated with the target column view model.void
TableVisualMappingManager.setVisualStyle(View<CyColumn> viewModel, VisualStyle visualStyle)
Set aVisualStyle
to the target column view model. -
Uses of CyColumn in org.cytoscape.view.vizmap.events.table
Methods in org.cytoscape.view.vizmap.events.table that return types with arguments of type CyColumnModifier and TypeMethodDescriptionColumnVisualStyleSetEvent.getColumnView()
Get the The target column view model.Constructor parameters in org.cytoscape.view.vizmap.events.table with type arguments of type CyColumnModifierConstructorDescriptionColumnVisualStyleSetEvent(TableVisualMappingManager source, VisualStyle style, View<CyColumn> view)
Creates the event.