shared
Interface SortFunction

All Known Implementing Classes:
Graph.EdgeSorter, Graph.NodeSorter, GraphMap.ArrayCmp

public interface SortFunction

Sort method interface.


Method Summary
 boolean is_less_than(java.lang.Object num1, java.lang.Object num2)
          The comparison method used for sorting functions.
 

Method Detail

is_less_than

public boolean is_less_than(java.lang.Object num1,
                            java.lang.Object num2)
The comparison method used for sorting functions.
Parameters:
num1 - The first object compared.
num2 - The second object compared.
Returns:
TRUE if num1 "is less than" num2 in priority.