KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > hibernate > event > FlushEvent


1 //$Id: FlushEvent.java,v 1.7 2005/05/27 03:53:58 oneovthafew Exp $
2
package org.hibernate.event;
3
4
5 /**
6  * Defines an event class for the flushing of a session.
7  *
8  * @author Steve Ebersole
9  */

10 public class FlushEvent extends AbstractEvent {
11     
12     public FlushEvent(EventSource source) {
13         super(source);
14     }
15
16 }
17
Popular Tags