node.setNoAdjunction(true);
// the anchor lemma of the parent is the category of the child node, we take here the first value of the category if it exists
if (node.getCategory() != null && !node.getCategory().getValues().isEmpty())
{
node.setAnchorLemma(new Lemma(node.getCategory().getFirstValue()), true);
node.getFsTop().addConstantFeature("lemma", node.getCategory());
node.getFsBot().addConstantFeature("lemma", node.getCategory());
}
if (node.getParent() != null)