net.sf.jtreemap.swing
Class SplitBySortedWeight

java.lang.Object
  extended by net.sf.jtreemap.swing.SplitStrategy
      extended by net.sf.jtreemap.swing.SplitBySortedWeight
All Implemented Interfaces:
java.io.Serializable

public class SplitBySortedWeight
extends SplitStrategy

Strategy who split the elements in 2 groups of equivalent weight.

The elements are first sorted by descending weight. Then they are splitted in 2 groups of equivalent weight.

The heaviest elements are on the top left of the JTreeMap. The lightest elements are on the bottom right of the JTreeMap

See Also:
Serialized Form
 

Constructor Summary
SplitBySortedWeight()
           
 
Method Summary
 void splitElements(java.util.Vector<TreeMapNode> v, java.util.Vector<TreeMapNode> v1, java.util.Vector<TreeMapNode> v2)
          split the elements of a JTreeMap.
 
Methods inherited from class net.sf.jtreemap.swing.SplitStrategy
calculatePositions, calculatePositionsRec, sortVector, sumWeight, workOutWeight
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SplitBySortedWeight

public SplitBySortedWeight()
Method Detail

splitElements

public void splitElements(java.util.Vector<TreeMapNode> v,
                          java.util.Vector<TreeMapNode> v1,
                          java.util.Vector<TreeMapNode> v2)
Description copied from class: SplitStrategy
split the elements of a JTreeMap.

Specified by:
splitElements in class SplitStrategy
Parameters:
v - Vector with the elements to split (arg IN)
v1 - first Vector of the split (arg OUT)
v2 - second Vector of the split (arg OUT)