|
Example of TableSortSelectedListener |
|
package testingapplication.table;
import com.softaspects.jsf.component.table.event.*;
import com.softaspects.jsf.component.table.listener.*;
import com.softaspects.jsf.component.table.*;
import javax.faces.event.AbortProcessingException;
public class MyTableSortSelectedListener implements TableSortSelectedListener {
public MyTableSortSelectedListener () {
}
public void processTableSortSelected ( TableSortSelectedEvent event )
throws AbortProcessingException {
System.out.println ( "MySortSelectedListener called ! " +
"Component id = " + event.getComponent ().getId () );
}
}