813814815816817818819820821822823
protected Joint calculateJoint(M model) { if (model == null) { return Joint.NONE; } TreeNode<M> node = findNode(model); Joint joint = Joint.NONE; if (node == null) { return joint; } if (!isLeaf(model)) { boolean children = true;
811812813814815816817818819820821