mirror of
https://github.com/wisemapping/wisemapping-open-source.git
synced 2025-04-12 01:44:30 +08:00
24 lines
510 B
JavaScript
24 lines
510 B
JavaScript
|
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";
|
||
|
|
||
|
}
|
||
|
});
|
||
|
|