Example of  Tree SelectionModel Bean

Top  Previous  Next

package testingapplication.tree;

 

import com.softaspects.jsf.component.tree.TreeSelectionModel;

 

/**

* Title:TreeSelectionModelBean

* Description:Selection model bean for the tree sample

*/

public class TreeSelectionModelBean extends TreeSelectionModel {

       /**

        * Constructor - model assembling

        */

       public TreeSelectionModelBean () {

               super ();

               this.setCurrentSelection ( "1,1,0" );

       }

}