wisemapping-open-source/mindplot/src/main/javascript/nlayout/ChildrenSorterStrategy.js

24 lines
510 B
JavaScript
Raw Normal View History

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";
}
});