找不到方法getComponent()

时间:2012-04-07 14:08:43

标签: java jsf jsf-2

我想用分页和排序实现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方法吗?

祝福

1 个答案:

答案 0 :(得分:4)

导入了错误的ActionEvent,您需要导入

javax.faces.event.ActionEvent

请参阅here