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

com.penglecode.common.support.TreeNodeBuilder Maven / Gradle / Ivy

Go to download

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);
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy