javax.sql

Interface RowSetListener

  • All Superinterfaces:
    EventListener

    public interface RowSetListener
    extends EventListener
    An interface that must be implemented by a component that wants to be notified when a significant event happens in the life of a RowSet object. A component becomes a listener by being registered with a RowSet object via the method RowSet.addRowSetListener. How a registered component implements this interface determines what it does when it is notified of an event.
    Since:
    1.4
    • Method Summary

      Methods 
      Modifier and Type Method and Description
      void cursorMoved(RowSetEvent event)
      Notifies registered listeners that a RowSet object's cursor has moved.
      void rowChanged(RowSetEvent event)
      Notifies registered listeners that a RowSet object has had a change in one of its rows.
      void rowSetChanged(RowSetEvent event)
      Notifies registered listeners that a RowSet object in the given RowSetEvent object has changed its entire contents.

        

    • Method Detail

      • rowSetChanged

        void rowSetChanged(RowSetEvent event)
        Notifies registered listeners that a RowSet object in the given RowSetEvent object has changed its entire contents.

        The source of the event can be retrieved with the method event.getSource.

        Parameters:
        event - a RowSetEvent object that contains the RowSet object that is the source of the event
      • rowChanged

        void rowChanged(RowSetEvent event)
        Notifies registered listeners that a RowSet object has had a change in one of its rows.

        The source of the event can be retrieved with the method event.getSource.

        Parameters:
        event - a RowSetEvent object that contains the RowSet object that is the source of the event
      • cursorMoved

        void cursorMoved(RowSetEvent event)
        Notifies registered listeners that a RowSet object's cursor has moved.

        The source of the event can be retrieved with the method event.getSource.

        Parameters:
        event - a RowSetEvent object that contains the RowSet object that is the source of the event

Traduction non disponible

Les API Java ne sont pas encore traduites en français sur l'infobrol. Seule la version anglaise est disponible pour l'instant.

Document créé le 29/08/2006, dernière modification le 04/03/2020
Source du document imprimé : https://www.gaudry.be/java-api-rf-javax/sql/RowSetListener.html

L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.

Références

  1. Consulter le document html Langue du document :fr Manuel PHP : https://docs.oracle.com, RowSetListener

Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.

Table des matières Haut