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

com.anysoft.util.datatree.DataTreeNode Maven / Gradle / Ivy

There is a newer version: 1.6.17
Show newest version
package com.anysoft.util.datatree;

public class DataTreeNode {
	protected object content;
	
	public DataTreeNode brother = null;
	public DataTreeNode child = null;
	
	public DataTreeNode(object _content){
		content = _content;
	}
	
	public String toString(){
		return content.toString();
	}
	
	public object getContent(){
		return content;
	}
}