package testingapplication.tree;

import com.softaspects.framework.galileo.components.treemodel.BaseTreeSelectionModelImpl;

/**
 * Title:TreeSelectionModelBean
 * Description:Selection model bean for the tree sample
 */
public class TreeSelectionModelBean extends BaseTreeSelectionModelImpl
{
	/**
	* Constructor - model assembling
	*/
	public TreeSelectionModelBean()
	{
		super();
		this.setCurrentSelection("1,1,0");
	}
}
