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

32 lines
688 B
JavaScript
Raw Normal View History

mindplot.nlayout.ChildrenSorterStrategy = new Class({
initialize:function() {
},
2011-12-12 03:47:01 +01:00
computeChildrenIdByHeights: function(treeSet, node) {
throw "Method must be implemented";
},
2011-12-12 03:47:01 +01:00
computeOffsets:function(treeSet, node) {
throw "Method must be implemented";
},
2011-12-12 03:47:01 +01:00
insert: function(treeSet, parent, child, order) {
throw "Method must be implemented";
},
2011-12-12 03:47:01 +01:00
detach:function(treeSet, node) {
throw "Method must be implemented";
},
predict:function(treeSet, parent, position) {
throw "Method must be implemented";
2011-12-12 03:47:01 +01:00
},
2011-12-12 03:47:01 +01:00
verify:function(treeSet, node) {
throw "Method must be implemented";
}
2011-12-12 03:47:01 +01:00
});