summaryrefslogtreecommitdiff
path: root/connectivity
diff options
context:
space:
mode:
authorAndras Timar <andras.timar@collabora.com>2016-07-13 23:23:15 +0200
committerAndras Timar <andras.timar@collabora.com>2016-07-13 23:23:15 +0200
commit7e38d503be827eaecf5702c03c7f10c85181c4a9 (patch)
tree14becbbaf03a464eaf5e38c605e0d831d25359c5 /connectivity
parentea7618f53efcd61d5911c276cc54587a9757b9e5 (diff)
partially revert 2d2ae27b7e7aa14735165
Change-Id: If8b79e4c07d14d6758bb2c9f55ae9935d24e4f9f
Diffstat (limited to 'connectivity')
-rw-r--r--connectivity/source/inc/java/sql/DriverPropertyInfo.hxx9
1 files changed, 9 insertions, 0 deletions
diff --git a/connectivity/source/inc/java/sql/DriverPropertyInfo.hxx b/connectivity/source/inc/java/sql/DriverPropertyInfo.hxx
index a745fefb62c1..70d2594908ee 100644
--- a/connectivity/source/inc/java/sql/DriverPropertyInfo.hxx
+++ b/connectivity/source/inc/java/sql/DriverPropertyInfo.hxx
@@ -37,6 +37,15 @@ namespace connectivity
public:
virtual jclass getMyClass() const override;
virtual ~java_sql_DriverPropertyInfo();
+ // A ctor that is needed for returning the object
+ java_sql_DriverPropertyInfo( JNIEnv * pEnv, jobject myObj ) : java_lang_Object( pEnv, myObj ){}
+ operator ::com::sun::star::sdbc::DriverPropertyInfo();
+
+ OUString name();
+ OUString description();
+ OUString value();
+ bool required();
+ ::com::sun::star::uno::Sequence< OUString> choices();
};
}