2011-12-11 13:13:43 -03:00
|
|
|
mindplot.nlayout.ChildrenSorterStrategy = new Class({
|
|
|
|
initialize:function() {
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2011-12-11 23:47:01 -03:00
|
|
|
computeChildrenIdByHeights: function(treeSet, node) {
|
2011-12-11 13:13:43 -03:00
|
|
|
throw "Method must be implemented";
|
|
|
|
},
|
|
|
|
|
2011-12-11 23:47:01 -03:00
|
|
|
computeOffsets:function(treeSet, node) {
|
2011-12-11 13:13:43 -03:00
|
|
|
throw "Method must be implemented";
|
|
|
|
},
|
|
|
|
|
2011-12-11 23:47:01 -03:00
|
|
|
insert: function(treeSet, parent, child, order) {
|
2011-12-11 13:13:43 -03:00
|
|
|
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) {
|
2011-12-11 13:13:43 -03:00
|
|
|
throw "Method must be implemented";
|
2011-12-11 23:47:01 -03:00
|
|
|
},
|
2011-12-11 13:13:43 -03:00
|
|
|
|
2011-12-11 23:47:01 -03:00
|
|
|
verify:function(treeSet, node) {
|
|
|
|
throw "Method must be implemented";
|
2011-12-30 17:48:11 -03:00
|
|
|
},
|
|
|
|
|
|
|
|
toString:function() {
|
|
|
|
throw "Method must be implemented: print name";
|
2011-12-11 13:13:43 -03:00
|
|
|
}
|
2011-12-11 23:47:01 -03:00
|
|
|
|
2011-12-11 13:13:43 -03:00
|
|
|
});
|
|
|
|
|