36 lines
778 B
JavaScript
Raw Normal View History

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