Example usage for javax.sql RowSetEvent toString

List of usage examples for javax.sql RowSetEvent toString

Introduction

In this page you can find the example usage for javax.sql RowSetEvent toString.

Prototype

public String toString() 

Source Link

Document

Returns a String representation of this EventObject.

Usage

From source file:Main.java

public void rowChanged(RowSetEvent event) {
    System.out.println("ExampleListener notified of rowChanged event");
    System.out.println(event.toString());
}

From source file:Main.java

public void cursorMoved(RowSetEvent event) {
    System.out.println("ExampleListener notified of cursorMoved event");
    System.out.println(event.toString());
}

From source file:Main.java

public void rowSetChanged(RowSetEvent event) {
    System.out.println("ExampleListener notified of rowSetChanged event");
    System.out.println(event.toString());
}