Uses of Class
org.cytoscape.view.layout.EdgeWeighter
-
Packages that use EdgeWeighter Package Description org.cytoscape.view.layout This package provides access to the available layout algorithms, as well as provides abstract layout classes and layout information containers for the convenience of implementing other layout algorithms. -
-
Uses of EdgeWeighter in org.cytoscape.view.layout
Fields in org.cytoscape.view.layout declared as EdgeWeighter Modifier and Type Field Description protected EdgeWeighter
AbstractPartitionLayoutTask. edgeWeighter
The EdgeWeighter used for edge weight calculations.Methods in org.cytoscape.view.layout with parameters of type EdgeWeighter Modifier and Type Method Description static List<LayoutPartition>
PartitionUtil. partition(CyNetworkView networkView, boolean selectedOnly, EdgeWeighter edgeWeighter)
Partition the graph -- this builds the LayoutEdge and LayoutNode arrays as a byproduct.static List<LayoutPartition>
PartitionUtil. partition(CyNetworkView networkView, Collection<CyNode> nodeSet, EdgeWeighter edgeWeighter)
Partition the graph -- this builds the LayoutEdge and LayoutNode arrays as a byproduct.void
LayoutPartition. setEdgeWeighter(EdgeWeighter edgeWeighter)
Set the EdgeWeighter to use for this partition.Constructors in org.cytoscape.view.layout with parameters of type EdgeWeighter Constructor Description LayoutPartition(CyNetworkView networkView, Collection<View<CyNode>> nodeSet, EdgeWeighter edgeWeighter)
LayoutPartition: use this constructor to create a LayoutPartition that includes the entire network.
-