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