Uses of Interface
org.cytoscape.view.vizmap.VisualStyle
-
Packages that use VisualStyle Package Description org.cytoscape.io.read Handle importing Cytoscape data (network, attributes, session, properties, etc) from files/URLs.org.cytoscape.io.write This package provides factory interfaces to be used by anyone wishing to provide export or writing capabilities to the rest of Cytoscape.org.cytoscape.session This package contains the interfaces and classes necessary to capturing, storing, and retrieving the state of a Cytoscape session.org.cytoscape.task.read This package contains a set of task factory interfaces for reading various Cytoscape objects from files and URLs.org.cytoscape.view.vizmap Visual Mapping basic API module.org.cytoscape.view.vizmap.events Events for Visual Mappings.org.cytoscape.view.vizmap.gui This package provides access to GUI component of VizMap GUI, and interfaces of mapping related managers. -
-
Uses of VisualStyle in org.cytoscape.io.read
Methods in org.cytoscape.io.read that return types with arguments of type VisualStyle Modifier and Type Method Description Set<VisualStyle>
VizmapReader. getVisualStyles()
Returns a list ofVisualStyle
objects. -
Uses of VisualStyle in org.cytoscape.io.write
Method parameters in org.cytoscape.io.write with type arguments of type VisualStyle Modifier and Type Method Description CyWriter
VizmapWriterFactory. createWriter(OutputStream os, Set<VisualStyle> styles)
Creates a single Task that will write the specified set ofVisualStyle
objects to the specified OutputStream.CyWriter
VizmapWriterManager. getWriter(Set<VisualStyle> styles, CyFileFilter filter, File file)
Returns theCyWriter
Task that will attempt to write the specified vizmap to the specified file of the specified file type.CyWriter
VizmapWriterManager. getWriter(Set<VisualStyle> styles, 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
Methods in org.cytoscape.session that return types with arguments of type VisualStyle Modifier and Type Method Description Set<VisualStyle>
CySession. getVisualStyles()
Returns a set containing all VisualStyles defined for this session.Method parameters in org.cytoscape.session with type arguments of type VisualStyle Modifier and Type Method Description CySession.Builder
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
Methods in org.cytoscape.task.read that return types with arguments of type VisualStyle Modifier and Type Method Description Set<VisualStyle>
LoadVizmapFileTaskFactory. loadStyles(File f)
Return a set of VisualStyle objects read from the specified file.Set<VisualStyle>
LoadVizmapFileTaskFactory. loadStyles(InputStream is)
Return a set of VisualStyle objects read from the specified file. -
Uses of VisualStyle in org.cytoscape.view.vizmap
Methods in org.cytoscape.view.vizmap that return VisualStyle Modifier and Type Method Description VisualStyle
VisualStyleFactory. createVisualStyle(String title)
Create a new VisualStyle.VisualStyle
VisualStyleFactory. createVisualStyle(VisualStyle original)
Create a copy of given VisualStyle.VisualStyle
VisualMappingManager. getCurrentVisualStyle()
Returns currently selected Visual Style.VisualStyle
VisualMappingManager. getDefaultVisualStyle()
Return defaultVisualStyle
.VisualStyle
VisualMappingManager. getVisualStyle(CyNetworkView networkViewModel)
Returns the VisualStyle associated with the target network view model.Methods in org.cytoscape.view.vizmap that return types with arguments of type VisualStyle Modifier and Type Method Description Set<VisualStyle>
VisualMappingManager. getAllVisualStyles()
Returns all available VisualStyles managed by this object.Methods in org.cytoscape.view.vizmap with parameters of type VisualStyle Modifier and Type Method Description void
VisualMappingManager. addVisualStyle(VisualStyle visualStyle)
Add a newVisualStyle
to this manager.VisualStyle
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
VisualMappingManager. setVisualStyle(VisualStyle visualStyle, CyNetworkView networkViewModel)
Set a VisualStyle to the target network view model. -
Uses of VisualStyle in org.cytoscape.view.vizmap.events
Methods in org.cytoscape.view.vizmap.events that return VisualStyle Modifier and Type Method Description VisualStyle
SetCurrentVisualStyleEvent. getVisualStyle()
Get the newly selected current Visual Style.VisualStyle
VisualStyleSetEvent. getVisualStyle()
Get the VisualStyle that was set to the network view.VisualStyle
VisualStyleAddedEvent. getVisualStyleAdded()
Get the newly created VisualStyle.VisualStyle
VisualStyleAboutToBeRemovedEvent. getVisualStyleToBeRemoved()
Returns targetVisualStyle
to be removed from manager.Constructors in org.cytoscape.view.vizmap.events with parameters of type VisualStyle Constructor Description SetCurrentVisualStyleEvent(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.gui
Methods in org.cytoscape.view.vizmap.gui with parameters of type VisualStyle Modifier and Type Method Description Component
DefaultViewEditor. getDefaultView(VisualStyle vs)
Deprecated.
-