Uses of Interface
org.cytoscape.view.vizmap.VisualStyle
Package
Description
Handle importing Cytoscape data (network, attributes, session, properties, etc) from files/URLs.
This package provides factory interfaces to be used by anyone wishing to provide
export or writing capabilities to the rest of Cytoscape.
This package contains the interfaces and classes necessary to capturing,
storing, and retrieving the state of a Cytoscape session.
This package contains a set of task factory interfaces for reading
various Cytoscape objects from files and URLs.
Visual Mapping basic API module.
Events for Visual Mappings.
This package provides access to GUI component of VizMap GUI, and interfaces of mapping related managers.
-
Uses of VisualStyle in org.cytoscape.io.read
Modifier and TypeMethodDescriptionVizmapReader.getTableVisualStyles()
Returns a list of tableVisualStyle
objects.VizmapReader.getVisualStyles()
Returns a list of networkVisualStyle
objects. -
Uses of VisualStyle in org.cytoscape.io.write
Modifier and TypeMethodDescriptionVizmapWriterFactory.createWriter(OutputStream os, Set<VisualStyle> networkStyles)
Creates a single Task that will write the specified set ofVisualStyle
objects to the specified OutputStream.default CyWriter
VizmapWriterFactory.createWriter(OutputStream os, Set<VisualStyle> networkStyles, Set<VisualStyle> tableStyles)
Creates a single Task that will write the specified set ofVisualStyle
objects to the specified OutputStream.VizmapWriterManager.getWriter(Set<VisualStyle> networkStyles, Set<VisualStyle> tableStyles, CyFileFilter filter, File file)
Returns theCyWriter
Task that will attempt to write the specified vizmap to the specified file of the specified file type.VizmapWriterManager.getWriter(Set<VisualStyle> networkStyles, Set<VisualStyle> tableStyles, CyFileFilter filter, OutputStream os)
Returns theCyWriter
Task that will attempt to write the specified vizmap to the specified output stream of the specified file type.VizmapWriterManager.getWriter(Set<VisualStyle> networkStyles, CyFileFilter filter, File file)
Returns theCyWriter
Task that will attempt to write the specified vizmap to the specified file of the specified file type.VizmapWriterManager.getWriter(Set<VisualStyle> networkStyles, CyFileFilter filter, OutputStream os)
Returns theCyWriter
Task that will attempt to write the specified vizmap to the specified output stream of the specified file type. -
Uses of VisualStyle in org.cytoscape.session
Modifier and TypeMethodDescriptionCySession.getTableStyles()
Returns a set containing all table VisualStyles defined for this session.CySession.getVisualStyles()
Returns a set containing all network VisualStyles defined for this session.Modifier and TypeMethodDescriptionCySession.Builder.tableStyles(Set<VisualStyle> styles)
Returns an instance of Builder that has at least been configured with the specified properties.CySession.Builder.visualStyles(Set<VisualStyle> styles)
Returns an instance of Builder that has at least been configured with the specified properties. -
Uses of VisualStyle in org.cytoscape.task.read
Modifier and TypeMethodDescriptionLoadVizmapFileTaskFactory.loadStyles(File f)
Return a set of VisualStyle objects read from the specified file.LoadVizmapFileTaskFactory.loadStyles(InputStream is)
Return a set of VisualStyle objects read from the specified file. -
Uses of VisualStyle in org.cytoscape.view.vizmap
Modifier and TypeMethodDescriptionVisualStyleFactory.createVisualStyle(String title)
Create a new VisualStyle.VisualStyleFactory.createVisualStyle(VisualStyle original)
Create a copy of given VisualStyle.VisualMappingManager.getCurrentVisualStyle()
Returns currently selected Visual Style.VisualMappingManager.getDefaultVisualStyle()
Return defaultVisualStyle
.TableVisualMappingManager.getVisualStyle(View<CyColumn> viewModel)
Returns theVisualStyle
associated with the target column view model.VisualMappingManager.getVisualStyle(CyNetworkView networkViewModel)
Returns the VisualStyle associated with the target network view model.Modifier and TypeMethodDescriptionTableVisualMappingManager.getAllVisualStyles()
Returns all availableVisualStyle
s managed by this object.VisualMappingManager.getAllVisualStyles()
Returns all available VisualStyles managed by this object.Modifier and TypeMethodDescriptionvoid
VisualMappingManager.addVisualStyle(VisualStyle visualStyle)
Add a newVisualStyle
to this manager.VisualStyleFactory.createVisualStyle(VisualStyle original)
Create a copy of given VisualStyle.void
VisualMappingManager.removeVisualStyle(VisualStyle visualStyle)
Remove a VisualStyle from this manager.void
VisualMappingManager.setCurrentVisualStyle(VisualStyle visualStyle)
Set the specifiedVisualStyle
as the current one.void
TableVisualMappingManager.setVisualStyle(View<CyColumn> viewModel, VisualStyle visualStyle)
Set aVisualStyle
to the target column view model.void
VisualMappingManager.setVisualStyle(VisualStyle visualStyle, CyNetworkView networkViewModel)
Set a VisualStyle to the target network view model. -
Uses of VisualStyle in org.cytoscape.view.vizmap.events
Modifier and TypeMethodDescriptionSetCurrentVisualStyleEvent.getVisualStyle()
Get the newly selected current Visual Style.VisualStyleSetEvent.getVisualStyle()
Get the VisualStyle that was set to the network view.VisualStyleAddedEvent.getVisualStyleAdded()
Get the newly created VisualStyle.VisualStyleAboutToBeRemovedEvent.getVisualStyleToBeRemoved()
Returns targetVisualStyle
to be removed from manager.ModifierConstructorDescriptionSetCurrentVisualStyleEvent(Object source, VisualStyle currentVisualStyle)
VisualStyleAboutToBeRemovedEvent(VisualMappingManager source, VisualStyle style)
Create an event for the removed VisualStyle.VisualStyleAddedEvent(VisualMappingManager source, VisualStyle created)
Creates an event for the newly created style.VisualStyleChangedEvent(VisualStyle source, Collection<VisualStyleChangeRecord> payload)
Constructor of this event.VisualStyleSetEvent(VisualMappingManager source, VisualStyle style, CyNetworkView view)
Creates the event. -
Uses of VisualStyle in org.cytoscape.view.vizmap.events.table
Modifier and TypeMethodDescriptionColumnVisualStyleSetEvent.getVisualStyle()
Get the VisualStyle that was set to the column view.ModifierConstructorDescriptionColumnVisualStyleSetEvent(TableVisualMappingManager source, VisualStyle style, View<CyColumn> view)
Creates the event. -
Uses of VisualStyle in org.cytoscape.view.vizmap.gui