Uses of Class
org.jgraph.layout.JGraphLayoutAlgorithm

Packages that use JGraphLayoutAlgorithm
org.jgraph.layout   
org.jgraph.util   
org.jgraph.utils.gui   
 

Uses of JGraphLayoutAlgorithm in org.jgraph.layout
 

Subclasses of JGraphLayoutAlgorithm in org.jgraph.layout
 class AnnealingLayoutAlgorithm
          Simulated Annealing Layout Algorithm
 class CircleGraphLayout
           
 class GEMLayoutAlgorithm
          GEM Layout Algorithm
 class MoenLayoutAlgorithm
           
 class OrderedTreeLayoutAlgorithm
          This class is similar to the TreeLayoutAlgorithm but it will sort the different levels of the graph using the default comparator or a custom comparator that you supply.
 class RadialTreeLayoutAlgorithm
          Lays out the nodes in a graph as a radial tree (root at the centre, children in concentric ovals).
 class SpringEmbeddedLayoutAlgorithm
          Arranges the nodes with the Spring Embedded Layout Algorithm.
 class SugiyamaLayoutAlgorithm
          Arranges the nodes with the Sugiyama Layout Algorithm.
Link to the algorithm

 class TreeLayoutAlgorithm
          TODO:COMMENT ME!
 

Methods in org.jgraph.layout with parameters of type JGraphLayoutAlgorithm
 void JGraphLayoutRegistry.add(JGraphLayoutAlgorithm layout)
          Register a new Layout
static void JGraphLayoutAlgorithm.applyLayout(JGraph sourceGraph, JGraphLayoutAlgorithm layout, java.lang.Object[] cells)
          Calls applyLayout() with null static_cells
static void JGraphLayoutAlgorithm.applyLayout(JGraph sourceGraph, JGraphLayoutAlgorithm layout, java.lang.Object[] dynamic_cells, java.lang.Object[] static_cells)
          Takes a local clone of the JGraph and calls the run() method on the specified layout algorithm on the local JGraph.
 

Uses of JGraphLayoutAlgorithm in org.jgraph.util
 

Methods in org.jgraph.util with parameters of type JGraphLayoutAlgorithm
static void JGraphUtilities.applyLayout(JGraph sourceGraph, JGraphLayoutAlgorithm layout)
           
 

Uses of JGraphLayoutAlgorithm in org.jgraph.utils.gui
 

Methods in org.jgraph.utils.gui that return JGraphLayoutAlgorithm
 JGraphLayoutAlgorithm LayoutDialog.getSelectedLayoutController()
          Returns the selected LayoutController of null if no LayoutController was selected
 

Methods in org.jgraph.utils.gui with parameters of type JGraphLayoutAlgorithm
 javax.swing.JDialog LayoutDialog.getLayoutSettingsDialog(JGraphLayoutAlgorithm layout)