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

cn.featherfly.common.structure.tree.TreeNode Maven / Gradle / Ivy

package cn.featherfly.common.structure.tree;


/**
 * 

* TreeNode,树型数据结构,和List,Set是一个类型 *

* @param 节点保存的对象 * @author zhongj */ public interface TreeNode extends TreeNodeModel>{ /** * 返回nodeObject * @return nodeObject */ O getNodeObject(); /** *

* 设置节点存放的对象 *

* @param object 对象 */ void setNodeObject(O object); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy