summaryrefslogtreecommitdiff
path: root/libjava/javax/sql/PooledConnection.h
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/javax/sql/PooledConnection.h')
-rw-r--r--libjava/javax/sql/PooledConnection.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/libjava/javax/sql/PooledConnection.h b/libjava/javax/sql/PooledConnection.h
new file mode 100644
index 00000000000..9310e91ea9c
--- /dev/null
+++ b/libjava/javax/sql/PooledConnection.h
@@ -0,0 +1,40 @@
+
+// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
+
+#ifndef __javax_sql_PooledConnection__
+#define __javax_sql_PooledConnection__
+
+#pragma interface
+
+#include <java/lang/Object.h>
+extern "Java"
+{
+ namespace java
+ {
+ namespace sql
+ {
+ class Connection;
+ }
+ }
+ namespace javax
+ {
+ namespace sql
+ {
+ class ConnectionEventListener;
+ class PooledConnection;
+ }
+ }
+}
+
+class javax::sql::PooledConnection : public ::java::lang::Object
+{
+
+public:
+ virtual ::java::sql::Connection * getConnection() = 0;
+ virtual void close() = 0;
+ virtual void addConnectionEventListener(::javax::sql::ConnectionEventListener *) = 0;
+ virtual void removeConnectionEventListener(::javax::sql::ConnectionEventListener *) = 0;
+ static ::java::lang::Class class$;
+} __attribute__ ((java_interface));
+
+#endif // __javax_sql_PooledConnection__