com.cybermkd.common.tree.TreeNode Maven / Gradle / Ivy
package com.cybermkd.common.tree;
import java.util.Collection;
/**
* @author Dreampie
* @date 2015-11-17
* @what
*/
public interface TreeNode {
public long getId();
public long getPid();
public Collection getChildren();
public void setChildren(Collection children);
}