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

io.github.jinghui70.rainbow.utils.tree.ITreeNode Maven / Gradle / Ivy

There is a newer version: 5.2.11
Show newest version
package io.github.jinghui70.rainbow.utils.tree;

import java.util.List;

public interface ITreeNode> {

    public List getChildren();

    public void setChildren(List children);

    public void addChild(T child);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy