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

pl.fhframework.model.TreeNodeTemplate Maven / Gradle / Ivy

package pl.fhframework.model;

import java.util.List;

/**
 * Interface required to be implememented by classes that should be visible in Tree
 * component.
 *
 * This will be removed in later releases.
 */
@Deprecated
public interface TreeNodeTemplate {

    /**
     * Setting parent for o node.
     */
    void setParent(E node);

    /**
     * Retriving parent for a node.
     */
    E getParent();

    long getId();

    List getChildren();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy