org.aksw.commons.collections.trees.LabeledNode Maven / Gradle / Ivy
package org.aksw.commons.collections.trees;
import java.util.Collection;
public interface LabeledNode
// extends AutoCloseable
//extends Entry
{
K getKey();
LabeledTree getTree();
LabeledNode getParent();
Collection extends LabeledNode> getChildren();
// Method that gets called when a node is deleted from the tree
void destroy();
//T getLabel();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy