表示される行の量を定義するパラメータとしてコンボボックスを使用してJavaスイングでページネーションを作成したいのですが、次、前、戻る、最後もボタンを使用します..
コードは次のとおりです。
view.getBtnNextPage().addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
String c = String.valueOf(view.getComboBox().getSelectedItem());
int a = view.getTable().getRowCount();
int b = (int) Biodata.countBiodatas();
if (c.equals("5")) {
int item = b * a;// 3
int next = item * a;
int akhir = b - a;
refreshTable(Biodata.findBiodataEntries(a + 5 - 5,
a + 5 + 6));
}
}
});