OSDN Git Service

2011-11-07 Andrew MacLeod <amacleod@redhat.com>
[pf3gnuchains/gcc-fork.git] / libjava / javax / sql / ConnectionEvent.h
1
2 // DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
3
4 #ifndef __javax_sql_ConnectionEvent__
5 #define __javax_sql_ConnectionEvent__
6
7 #pragma interface
8
9 #include <java/util/EventObject.h>
10 extern "Java"
11 {
12   namespace java
13   {
14     namespace sql
15     {
16         class SQLException;
17     }
18   }
19   namespace javax
20   {
21     namespace sql
22     {
23         class ConnectionEvent;
24         class PooledConnection;
25     }
26   }
27 }
28
29 class javax::sql::ConnectionEvent : public ::java::util::EventObject
30 {
31
32 public:
33   ConnectionEvent(::javax::sql::PooledConnection *);
34   ConnectionEvent(::javax::sql::PooledConnection *, ::java::sql::SQLException *);
35   virtual ::java::sql::SQLException * getSQLException();
36 private:
37   static const jlong serialVersionUID = -4843217645290030002LL;
38   ::java::sql::SQLException * __attribute__((aligned(__alignof__( ::java::util::EventObject)))) ex;
39 public:
40   static ::java::lang::Class class$;
41 };
42
43 #endif // __javax_sql_ConnectionEvent__