Uses of Interface
y25.layout.Layouter25D

Packages that use Layouter25D
y25.layout Extends layered graphs with layout information. 
 

Uses of Layouter25D in y25.layout
 

Subinterfaces of Layouter25D in y25.layout
 interface LayoutStage25D
          A stage of a complex layout chain.
 

Classes in y25.layout that implement Layouter25D
 class AbstractLayoutStage25D
          Partial LayoutStage25D implementation that handles the core layouter part.
 class CentralizerLayouter25D
          A layouter that centers all layers and adjusts their bounding boxes.
 class CompositeLayouter25D
          A layouter that allows to express a layout operation as a chain of multiple layout stages.
 class FlatLayouter
          First flattens a LayeredLayoutGraph, then applies a 2D layouter to it, then unflattens it.
protected  class FlatLayouter.CanonicFlatteningStage
          The canonic flatteing/unflattening stage used by FlatLayouter.
 class Layouter25DAdapter
          Applies a 2D Layouter to all Graphs inside a LayeredLayoutGraph individually.
 

Fields in y25.layout declared as Layouter25D
protected  Layouter25D CompositeLayouter25D.coreLayouter
          The layouter that is always invoked at the end of the chain.
protected  Layouter25D AbstractLayoutStage25D.coreLayouter
          The core layouter of this layout stage.
 

Methods in y25.layout that return Layouter25D
 Layouter25D LayoutStage25D.getCoreLayouter25D()
          Returns the core layouter.
 Layouter25D AbstractLayoutStage25D.getCoreLayouter25D()
           
 

Methods in y25.layout with parameters of type Layouter25D
 void LayoutStage25D.setCoreLayouter25D(Layouter25D layouter)
          Sets the core layouter.
 void AbstractLayoutStage25D.setCoreLayouter25D(Layouter25D core)
           
 

Constructors in y25.layout with parameters of type Layouter25D
CompositeLayouter25D(LayoutStage25D stage, Layouter25D coreLayouter)
          Creates a new instance of CompositeLayouter25D.
AbstractLayoutStage25D(Layouter25D core)
          Initializes this AbstractLayoutStage25D with the given core layouter.