summaryrefslogtreecommitdiff
path: root/connectivity/source/inc/java
diff options
context:
space:
mode:
Diffstat (limited to 'connectivity/source/inc/java')
-rw-r--r--connectivity/source/inc/java/io/InputStream.hxx2
-rw-r--r--connectivity/source/inc/java/io/Reader.hxx2
-rw-r--r--connectivity/source/inc/java/lang/Boolean.hxx2
-rw-r--r--connectivity/source/inc/java/lang/Class.hxx2
-rw-r--r--connectivity/source/inc/java/lang/Exception.hxx2
-rw-r--r--connectivity/source/inc/java/lang/String.hxx2
-rw-r--r--connectivity/source/inc/java/lang/Throwable.hxx2
-rw-r--r--connectivity/source/inc/java/math/BigDecimal.hxx2
-rw-r--r--connectivity/source/inc/java/sql/Array.hxx2
-rw-r--r--connectivity/source/inc/java/sql/Blob.hxx2
-rw-r--r--connectivity/source/inc/java/sql/CallableStatement.hxx2
-rw-r--r--connectivity/source/inc/java/sql/Clob.hxx2
-rw-r--r--connectivity/source/inc/java/sql/Connection.hxx2
-rw-r--r--connectivity/source/inc/java/sql/DatabaseMetaData.hxx2
-rw-r--r--connectivity/source/inc/java/sql/Driver.hxx2
-rw-r--r--connectivity/source/inc/java/sql/DriverPropertyInfo.hxx2
-rw-r--r--connectivity/source/inc/java/sql/JStatement.hxx4
-rw-r--r--connectivity/source/inc/java/sql/PreparedStatement.hxx2
-rw-r--r--connectivity/source/inc/java/sql/Ref.hxx2
-rw-r--r--connectivity/source/inc/java/sql/ResultSet.hxx2
-rw-r--r--connectivity/source/inc/java/sql/ResultSetMetaData.hxx2
-rw-r--r--connectivity/source/inc/java/sql/SQLException.hxx2
-rw-r--r--connectivity/source/inc/java/sql/SQLWarning.hxx2
-rw-r--r--connectivity/source/inc/java/sql/Timestamp.hxx6
-rw-r--r--connectivity/source/inc/java/util/Date.hxx2
-rw-r--r--connectivity/source/inc/java/util/Property.hxx2
26 files changed, 29 insertions, 29 deletions
diff --git a/connectivity/source/inc/java/io/InputStream.hxx b/connectivity/source/inc/java/io/InputStream.hxx
index c4ca05517e4f..c63013a796e9 100644
--- a/connectivity/source/inc/java/io/InputStream.hxx
+++ b/connectivity/source/inc/java/io/InputStream.hxx
@@ -35,7 +35,7 @@ namespace connectivity
protected:
// static Data for the Class
static jclass theClass;
- virtual ~java_io_InputStream();
+ virtual ~java_io_InputStream() override;
public:
virtual jclass getMyClass() const override;
// a Constructor, that is needed for when Returning the Object is needed:
diff --git a/connectivity/source/inc/java/io/Reader.hxx b/connectivity/source/inc/java/io/Reader.hxx
index 6002f4f4dc58..64b71e6f0c0b 100644
--- a/connectivity/source/inc/java/io/Reader.hxx
+++ b/connectivity/source/inc/java/io/Reader.hxx
@@ -36,7 +36,7 @@ namespace connectivity
protected:
// static Data for the Class
static jclass theClass;
- virtual ~java_io_Reader();
+ virtual ~java_io_Reader() override;
boost::optional<char> m_buf;
public:
virtual jclass getMyClass() const override;
diff --git a/connectivity/source/inc/java/lang/Boolean.hxx b/connectivity/source/inc/java/lang/Boolean.hxx
index 682294709f24..399a9191ca46 100644
--- a/connectivity/source/inc/java/lang/Boolean.hxx
+++ b/connectivity/source/inc/java/lang/Boolean.hxx
@@ -32,7 +32,7 @@ namespace connectivity
static jclass theClass;
public:
virtual jclass getMyClass() const override;
- virtual ~java_lang_Boolean();
+ virtual ~java_lang_Boolean() override;
// a Constructor, that is needed for when Returning the Object is needed:
java_lang_Boolean( JNIEnv * pEnv, jobject myObj ) : java_lang_Object( pEnv, myObj ){}
diff --git a/connectivity/source/inc/java/lang/Class.hxx b/connectivity/source/inc/java/lang/Class.hxx
index 2ad8e4c4f6fa..8dc8b3fb6eea 100644
--- a/connectivity/source/inc/java/lang/Class.hxx
+++ b/connectivity/source/inc/java/lang/Class.hxx
@@ -32,7 +32,7 @@ namespace connectivity
static jclass theClass;
public:
virtual jclass getMyClass() const override;
- virtual ~java_lang_Class();
+ virtual ~java_lang_Class() override;
// a Constructor, that is needed for when Returning the Object is needed:
java_lang_Class( JNIEnv * pEnv, jobject myObj ) : java_lang_Object( pEnv, myObj ){}
diff --git a/connectivity/source/inc/java/lang/Exception.hxx b/connectivity/source/inc/java/lang/Exception.hxx
index fd0d670cb4a4..ea63cbcf3240 100644
--- a/connectivity/source/inc/java/lang/Exception.hxx
+++ b/connectivity/source/inc/java/lang/Exception.hxx
@@ -33,7 +33,7 @@ namespace connectivity
static jclass theClass;
public:
virtual jclass getMyClass() const override;
- virtual ~java_lang_Exception();
+ virtual ~java_lang_Exception() override;
// a Constructor, that is needed for when Returning the Object is needed:
java_lang_Exception( JNIEnv * pEnv, jobject myObj ) : java_lang_Throwable( pEnv, myObj ){}
diff --git a/connectivity/source/inc/java/lang/String.hxx b/connectivity/source/inc/java/lang/String.hxx
index c39fbb84f871..45807594c9ea 100644
--- a/connectivity/source/inc/java/lang/String.hxx
+++ b/connectivity/source/inc/java/lang/String.hxx
@@ -30,7 +30,7 @@ namespace connectivity
static jclass theClass;
public:
virtual jclass getMyClass() const override;
- virtual ~java_lang_String();
+ virtual ~java_lang_String() override;
// a Constructor, that is needed for when Returning the Object is needed:
java_lang_String( JNIEnv * pEnv, jobject myObj ) : java_lang_Object( pEnv, myObj ){}
diff --git a/connectivity/source/inc/java/lang/Throwable.hxx b/connectivity/source/inc/java/lang/Throwable.hxx
index 5cdbb83ab9b6..898d1b84100d 100644
--- a/connectivity/source/inc/java/lang/Throwable.hxx
+++ b/connectivity/source/inc/java/lang/Throwable.hxx
@@ -33,7 +33,7 @@ namespace connectivity
static jclass theClass;
public:
virtual jclass getMyClass() const override;
- virtual ~java_lang_Throwable();
+ virtual ~java_lang_Throwable() override;
// a Constructor, that is needed for when Returning the Object is needed:
java_lang_Throwable( JNIEnv * pEnv, jobject myObj ) : java_lang_Object( pEnv, myObj ){}
OUString getMessage() const;
diff --git a/connectivity/source/inc/java/math/BigDecimal.hxx b/connectivity/source/inc/java/math/BigDecimal.hxx
index e3033c88f339..0b94e6b2187c 100644
--- a/connectivity/source/inc/java/math/BigDecimal.hxx
+++ b/connectivity/source/inc/java/math/BigDecimal.hxx
@@ -31,7 +31,7 @@ namespace connectivity
static jclass theClass;
public:
virtual jclass getMyClass() const override;
- virtual ~java_math_BigDecimal();
+ virtual ~java_math_BigDecimal() override;
java_math_BigDecimal( const OUString& _par0 );
java_math_BigDecimal( const double& _par0 );
diff --git a/connectivity/source/inc/java/sql/Array.hxx b/connectivity/source/inc/java/sql/Array.hxx
index 4beb463ef21f..70f4efeb8005 100644
--- a/connectivity/source/inc/java/sql/Array.hxx
+++ b/connectivity/source/inc/java/sql/Array.hxx
@@ -37,7 +37,7 @@ namespace connectivity
static jclass theClass;
public:
virtual jclass getMyClass() const override;
- virtual ~java_sql_Array();
+ virtual ~java_sql_Array() override;
// A ctor that is needed for returning the object
java_sql_Array( JNIEnv * pEnv, jobject myObj ) : java_lang_Object( pEnv, myObj ){}
diff --git a/connectivity/source/inc/java/sql/Blob.hxx b/connectivity/source/inc/java/sql/Blob.hxx
index f3c3667c2eec..42547795ac29 100644
--- a/connectivity/source/inc/java/sql/Blob.hxx
+++ b/connectivity/source/inc/java/sql/Blob.hxx
@@ -36,7 +36,7 @@ namespace connectivity
protected:
// Static data for the class
static jclass theClass;
- virtual ~java_sql_Blob();
+ virtual ~java_sql_Blob() override;
public:
virtual jclass getMyClass() const override;
diff --git a/connectivity/source/inc/java/sql/CallableStatement.hxx b/connectivity/source/inc/java/sql/CallableStatement.hxx
index d1ce5a7de665..fba2958853e7 100644
--- a/connectivity/source/inc/java/sql/CallableStatement.hxx
+++ b/connectivity/source/inc/java/sql/CallableStatement.hxx
@@ -39,7 +39,7 @@ namespace connectivity
static jclass theClass;
virtual void createStatement(JNIEnv* _pEnv) override;
- virtual ~java_sql_CallableStatement();
+ virtual ~java_sql_CallableStatement() override;
public:
DECLARE_SERVICE_INFO();
virtual jclass getMyClass() const override;
diff --git a/connectivity/source/inc/java/sql/Clob.hxx b/connectivity/source/inc/java/sql/Clob.hxx
index 167b10bfe03d..9ccfd22866b0 100644
--- a/connectivity/source/inc/java/sql/Clob.hxx
+++ b/connectivity/source/inc/java/sql/Clob.hxx
@@ -36,7 +36,7 @@ namespace connectivity
protected:
// Static data for the class
static jclass theClass;
- virtual ~java_sql_Clob();
+ virtual ~java_sql_Clob() override;
public:
virtual jclass getMyClass() const override;
diff --git a/connectivity/source/inc/java/sql/Connection.hxx b/connectivity/source/inc/java/sql/Connection.hxx
index 8753069a7267..8b77b5831a8f 100644
--- a/connectivity/source/inc/java/sql/Connection.hxx
+++ b/connectivity/source/inc/java/sql/Connection.hxx
@@ -80,7 +80,7 @@ namespace connectivity
// Static data for the class
static jclass theClass;
- virtual ~java_sql_Connection();
+ virtual ~java_sql_Connection() override;
public:
virtual jclass getMyClass() const override;
diff --git a/connectivity/source/inc/java/sql/DatabaseMetaData.hxx b/connectivity/source/inc/java/sql/DatabaseMetaData.hxx
index 478dc88bb39e..5484be5c099d 100644
--- a/connectivity/source/inc/java/sql/DatabaseMetaData.hxx
+++ b/connectivity/source/inc/java/sql/DatabaseMetaData.hxx
@@ -42,7 +42,7 @@ namespace connectivity
public:
virtual jclass getMyClass() const override;
- virtual ~java_sql_DatabaseMetaData();
+ virtual ~java_sql_DatabaseMetaData() override;
// A ctor that is needed for returning the object
java_sql_DatabaseMetaData( JNIEnv * pEnv, jobject myObj, java_sql_Connection& _rConnection );
diff --git a/connectivity/source/inc/java/sql/Driver.hxx b/connectivity/source/inc/java/sql/Driver.hxx
index bb91e40b85a3..876f00f1eb20 100644
--- a/connectivity/source/inc/java/sql/Driver.hxx
+++ b/connectivity/source/inc/java/sql/Driver.hxx
@@ -37,7 +37,7 @@ namespace connectivity
::comphelper::ResourceBasedEventLogger m_aLogger;
protected:
- virtual ~java_sql_Driver();
+ virtual ~java_sql_Driver() override;
public:
java_sql_Driver(const css::uno::Reference< css::uno::XComponentContext >& _rxContext);
diff --git a/connectivity/source/inc/java/sql/DriverPropertyInfo.hxx b/connectivity/source/inc/java/sql/DriverPropertyInfo.hxx
index a745fefb62c1..6594b716dd7d 100644
--- a/connectivity/source/inc/java/sql/DriverPropertyInfo.hxx
+++ b/connectivity/source/inc/java/sql/DriverPropertyInfo.hxx
@@ -36,7 +36,7 @@ namespace connectivity
static jclass theClass;
public:
virtual jclass getMyClass() const override;
- virtual ~java_sql_DriverPropertyInfo();
+ virtual ~java_sql_DriverPropertyInfo() override;
};
}
diff --git a/connectivity/source/inc/java/sql/JStatement.hxx b/connectivity/source/inc/java/sql/JStatement.hxx
index fe7ff029f349..7c53219b5fea 100644
--- a/connectivity/source/inc/java/sql/JStatement.hxx
+++ b/connectivity/source/inc/java/sql/JStatement.hxx
@@ -115,7 +115,7 @@ namespace connectivity
virtual void createStatement(JNIEnv* _pEnv) = 0;
- virtual ~java_sql_Statement_Base();
+ virtual ~java_sql_Statement_Base() override;
sal_Int32 impl_getProperty(const char* _pMethodName, jmethodID& _inout_MethodID);
sal_Int32 impl_getProperty(const char* _pMethodName, jmethodID& _inout_MethodID,sal_Int32 _nDefault);
@@ -187,7 +187,7 @@ namespace connectivity
virtual void createStatement(JNIEnv* _pEnv) override;
- virtual ~java_sql_Statement();
+ virtual ~java_sql_Statement() override;
public:
DECLARE_SERVICE_INFO();
virtual jclass getMyClass() const override;
diff --git a/connectivity/source/inc/java/sql/PreparedStatement.hxx b/connectivity/source/inc/java/sql/PreparedStatement.hxx
index 2a25a32c79ae..0a1721fd0c99 100644
--- a/connectivity/source/inc/java/sql/PreparedStatement.hxx
+++ b/connectivity/source/inc/java/sql/PreparedStatement.hxx
@@ -44,7 +44,7 @@ namespace connectivity
static jclass theClass;
virtual void createStatement(JNIEnv* _pEnv) override;
- virtual ~java_sql_PreparedStatement();
+ virtual ~java_sql_PreparedStatement() override;
public:
DECLARE_SERVICE_INFO();
virtual jclass getMyClass() const override;
diff --git a/connectivity/source/inc/java/sql/Ref.hxx b/connectivity/source/inc/java/sql/Ref.hxx
index aa28c2c1a21b..7d2ea6a0aad6 100644
--- a/connectivity/source/inc/java/sql/Ref.hxx
+++ b/connectivity/source/inc/java/sql/Ref.hxx
@@ -35,7 +35,7 @@ namespace connectivity
protected:
// Static data for the class
static jclass theClass;
- virtual ~java_sql_Ref();
+ virtual ~java_sql_Ref() override;
public:
virtual jclass getMyClass() const override;
diff --git a/connectivity/source/inc/java/sql/ResultSet.hxx b/connectivity/source/inc/java/sql/ResultSet.hxx
index 975352c53f1c..4ef232421530 100644
--- a/connectivity/source/inc/java/sql/ResultSet.hxx
+++ b/connectivity/source/inc/java/sql/ResultSet.hxx
@@ -97,7 +97,7 @@ namespace connectivity
css::uno::Any& rValue,
sal_Int32 nHandle
) const override;
- virtual ~java_sql_ResultSet();
+ virtual ~java_sql_ResultSet() override;
public:
DECLARE_SERVICE_INFO();
virtual jclass getMyClass() const override;
diff --git a/connectivity/source/inc/java/sql/ResultSetMetaData.hxx b/connectivity/source/inc/java/sql/ResultSetMetaData.hxx
index 279e7f784d99..9e830c10ad41 100644
--- a/connectivity/source/inc/java/sql/ResultSetMetaData.hxx
+++ b/connectivity/source/inc/java/sql/ResultSetMetaData.hxx
@@ -39,7 +39,7 @@ namespace connectivity
// Static data for the class
static jclass theClass;
- virtual ~java_sql_ResultSetMetaData();
+ virtual ~java_sql_ResultSetMetaData() override;
public:
virtual jclass getMyClass() const override;
diff --git a/connectivity/source/inc/java/sql/SQLException.hxx b/connectivity/source/inc/java/sql/SQLException.hxx
index cddf852997e6..e276f9873ab9 100644
--- a/connectivity/source/inc/java/sql/SQLException.hxx
+++ b/connectivity/source/inc/java/sql/SQLException.hxx
@@ -41,7 +41,7 @@ namespace connectivity
static jclass theClass;
public:
virtual jclass getMyClass() const override;
- virtual ~java_sql_SQLException_BASE();
+ virtual ~java_sql_SQLException_BASE() override;
// A ctor that is needed for returning the object
java_sql_SQLException_BASE( JNIEnv * pEnv, jobject myObj );
diff --git a/connectivity/source/inc/java/sql/SQLWarning.hxx b/connectivity/source/inc/java/sql/SQLWarning.hxx
index ad30f7a6e884..f1840cedb26f 100644
--- a/connectivity/source/inc/java/sql/SQLWarning.hxx
+++ b/connectivity/source/inc/java/sql/SQLWarning.hxx
@@ -33,7 +33,7 @@ namespace connectivity
static jclass theClass;
public:
virtual jclass getMyClass() const override;
- virtual ~java_sql_SQLWarning_BASE();
+ virtual ~java_sql_SQLWarning_BASE() override;
// A ctor that is needed for returning the object
java_sql_SQLWarning_BASE( JNIEnv * pEnv, jobject myObj ) : java_sql_SQLException_BASE( pEnv, myObj ){}
diff --git a/connectivity/source/inc/java/sql/Timestamp.hxx b/connectivity/source/inc/java/sql/Timestamp.hxx
index d05505119888..968638ad079c 100644
--- a/connectivity/source/inc/java/sql/Timestamp.hxx
+++ b/connectivity/source/inc/java/sql/Timestamp.hxx
@@ -37,7 +37,7 @@ namespace connectivity
static jclass theClass;
public:
virtual jclass getMyClass() const override;
- virtual ~java_sql_Date();
+ virtual ~java_sql_Date() override;
// A ctor that is needed for returning the object
java_sql_Date( JNIEnv * pEnv, jobject myObj ) : java_util_Date(pEnv,myObj){}
java_sql_Date( const css::util::Date& _rOut );
@@ -57,7 +57,7 @@ namespace connectivity
static jclass theClass;
public:
virtual jclass getMyClass() const override;
- virtual ~java_sql_Time();
+ virtual ~java_sql_Time() override;
// A ctor that is needed for returning the object
java_sql_Time( JNIEnv * pEnv, jobject myObj ) : java_util_Date( pEnv, myObj ){}
java_sql_Time( const css::util::Time& _rOut );
@@ -75,7 +75,7 @@ namespace connectivity
static jclass theClass;
public:
virtual jclass getMyClass() const override;
- virtual ~java_sql_Timestamp();
+ virtual ~java_sql_Timestamp() override;
// A ctor that is needed for returning the object
java_sql_Timestamp( JNIEnv * pEnv, jobject myObj ) : java_util_Date( pEnv, myObj ){}
java_sql_Timestamp( const css::util::DateTime& _rOut);
diff --git a/connectivity/source/inc/java/util/Date.hxx b/connectivity/source/inc/java/util/Date.hxx
index ea7d456fb9a3..ee71ff96420f 100644
--- a/connectivity/source/inc/java/util/Date.hxx
+++ b/connectivity/source/inc/java/util/Date.hxx
@@ -37,7 +37,7 @@ namespace connectivity
static jclass theClass;
public:
virtual jclass getMyClass() const override;
- virtual ~java_util_Date();
+ virtual ~java_util_Date() override;
// A ctor that is needed for returning the object
java_util_Date( JNIEnv * pEnv, jobject myObj ) : java_lang_Object( pEnv, myObj ){}
};
diff --git a/connectivity/source/inc/java/util/Property.hxx b/connectivity/source/inc/java/util/Property.hxx
index bb9c01bfc6f2..611e4d0f540f 100644
--- a/connectivity/source/inc/java/util/Property.hxx
+++ b/connectivity/source/inc/java/util/Property.hxx
@@ -30,7 +30,7 @@ namespace connectivity
static jclass theClass;
public:
virtual jclass getMyClass() const override;
- virtual ~java_util_Properties();
+ virtual ~java_util_Properties() override;
java_util_Properties( );
void setProperty(const OUString& key, const OUString& value);
};