Uses of Interface
treemap.MapModel

Uses of MapModel in treemap
 

Classes in treemap that implement MapModel
 class SimpleMapModel
          A simple implementation of the MapModel interface.
 class TreeModel
          An implementation of MapModel that represents a hierarchical structure.
 

Methods in treemap that return MapModel
 MapModel[] TreeModel.getLeafModels()
           
 

Methods in treemap with parameters of type MapModel
static double LayoutCalculations.averageAspectRatio(MapModel model)
           
 double LayoutDifference.averageDistance(MapModel model)
           
static int LayoutCalculations.getItemIndex(int order, MapModel map)
           
static double LayoutCalculations.getReadability(MapModel model)
          Compute the readability of the model.
static double LayoutCalculations.getReadability(MapModel[] model)
           
 void StripTreemap.layout(MapModel model, double x, double y, double w, double h)
           
 void PivotBySplitSize.layout(MapModel model, double x, double y, double w, double h)
           
 void PivotBySize.layout(MapModel model, double x, double y, double w, double h)
           
 void PivotByMiddle.layout(MapModel model, double x, double y, double w, double h)
           
 void OrderedTreemap.layout(MapModel model, double x, double y, double w, double h)
           
 void MapLayout.layout(MapModel model, double x, double y, double w, double h)
          Arrange the items in the given MapModel to fill the given rectangle.
 void AbstractMapLayout.layout(MapModel model, double x, double y, double w, double h)
           
 void StripTreemap.layout(MapModel model, Rect bounds)
           
 void PivotBySplitSize.layout(MapModel model, Rect bounds)
           
 void PivotBySize.layout(MapModel model, Rect bounds)
           
 void PivotByMiddle.layout(MapModel model, Rect bounds)
           
 void OrderedTreemap.layout(MapModel model, Rect bounds)
           
 void MapLayout.layout(MapModel model, Rect bounds)
          Arrange the items in the given MapModel to fill the given rectangle.
 void AbstractMapLayout.layout(MapModel model, Rect bounds)
           
 void OrderedTreemap.layoutAtOrigin(MapModel model, Rect bounds)
           
 void LayoutDifference.recordLayout(MapModel model)
           
 

Constructors in treemap with parameters of type MapModel
RecursiveTreemap(MapModel model, double x, double y, double w, double h)
           
Treemap(MapModel model, double x, double y, double w, double h)