
package testingapplication.tabbedPanel;

import com.softaspects.framework.galileo.support.components.listmodel.ListSelectionModelImpl;

/**
 * Title: TabbedPanelSelectionModelBean
 * Description: Selection Model bean for tabbedpanel component sample
 */
public class TabbedPanelSelectionModelBean extends ListSelectionModelImpl
{
    /**
     * Constructor - assemble the model
     */
    public TabbedPanelSelectionModelBean()
    {
        super();
        this.select(4);

    }
}
