42434445464748495051525354
public abstract Class<R> getChildLinkType(); public T treeGetParent() { AbstractChildren prevRel = getIncomingRelationship(getChildLinkType()); if (prevRel != null) { return (T) prevRel.getSourceNode(); } return null; }