
package testingapplication.toolbar;

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

/**
 * Title: ToolBarSelectionModelBean
 * Description: Selection model bean for the toolbar sample
 */
public class ToolBarSelectionModelBean extends BaseTreeSelectionModelImpl
{
    /**
     * Constructor - model assembling
     */
    public ToolBarSelectionModelBean()
    {
        super();
        this.setCurrentSelection("page3");
    }
}
