com.penglecode.common.support.TreeNodeBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons Show documentation
Show all versions of commons Show documentation
commons is a little java tool to make your development easier in your work.
The newest version!
package com.penglecode.common.support;
/**
* 树结构单个节点的json数据构造接口
*
* @param
* @author pengpeng
* @date 2013-10-14 下午11:36:07
* @version 1.0
*/
public interface TreeNodeBuilder {
public void build4Leaf(T treeNode, StringBuilder sb);
public void build4Folder(T treeNode, StringBuilder sb);
}