Close the first prototype of the new layout

This commit is contained in:
Paulo Veiga
2011-12-11 13:13:43 -03:00
parent a482c410a2
commit 9c41f0719c
10 changed files with 780 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
mindplot.nlayout.ChildrenSorterStrategy = new Class({
initialize:function() {
},
predict:function(treeSet, parent, position) {
throw "Method must be implemented";
},
sorter: function(treeSet, parent, child, order) {
throw "Method must be implemented";
},
computeChildrenIdByHeights: function(treeSet, node) {
throw "Method must be implemented";
},
computeOffsets:function(treeSet, node) {
throw "Method must be implemented";
}
});