All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.aksw.commons.collections.trees.LabeledNode Maven / Gradle / Ivy

There is a newer version: 0.9.9
Show newest version
package org.aksw.commons.collections.trees;

import java.util.Collection;

public interface LabeledNode
//    extends AutoCloseable
    //extends Entry
{
    K getKey();

    LabeledTree getTree();

    LabeledNode getParent();
    Collection> getChildren();

    // Method that gets called when a node is deleted from the tree
    void destroy();
    //T getLabel();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy