我想用分页和排序实现this JSF页面。不幸的是,Netbeans在使用getComponent()
时显示错误:
cannot find symbol
symbol: method getComponent()
location: variable event of type java.awt.event.ActionEvent
我尝试导入依赖java.awt.event.ActionEvent,但没有变化。这是使用getComponent()
的代码。
public void page(ActionEvent event) {
page(((Integer) ((UICommand) event.getComponent()).getValue() - 1) * rowsPerPage);
}
使用getComponent()
需要哪些依赖项?我可以用类似的方法替换这个Java方法吗?
祝福