Example of TabbedPanel Selection Model Bean

Top  Previous  Next

package testingapplication.tabbedPanel;

 

import com.softaspects.jsf.component.tabbedPanel.TabPanSelectionModel;

import com.softaspects.jsf.component.tabbedPanel.TabbedPanelSelectionModel;

import com.softaspects.jsf.component.listmodel.ListSelectionModel;

 

 

/**

* Title: TabbedPanelSelectionModelBean

* Description: Selection Model bean for tabbedpanel component sample

*/

public class TabbedPanelSelectionModelBean extends TabbedPanelSelectionModel  {

  /**

   * Constructor - assemble the model

   */

  public TabbedPanelSelectionModelBean() {

      super();

      this.select(4);

 

  }

}