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

pl.fhframework.trees.IGroupingTreeElement Maven / Gradle / Ivy

package pl.fhframework.trees;

import java.util.Comparator;

public interface IGroupingTreeElement extends ITreeElement {

    String getContainerId();

    //Class getContainer();

    void addSubelement(ITreeElement newElement);

    void sortSubelements(Comparator comparer);

    default boolean isGrouping() {
        return true;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy