package com.gx.obe.datastruct.tree; import java.util.List; public interface ITree<T extends ITree<T>> { public T getParent(); public List<T> getChildList(); }