Esempio n. 1
0
  public void lastButton_actionPerformed(ActionEvent e) {
    if (resultSetController != null) {
      for (int i = 0; i < beforeActionListeners.size(); i++)
        ((ActionListener) beforeActionListeners.get(i))
            .actionPerformed(new ActionEvent(this, ActionEvent.ACTION_PERFORMED, LAST_BUTTON));

      resultSetController.lastRow(this);
    }
  }