summaryrefslogtreecommitdiff
path: root/qadevOOo/tests/java/mod
diff options
context:
space:
mode:
Diffstat (limited to 'qadevOOo/tests/java/mod')
-rw-r--r--qadevOOo/tests/java/mod/_fwk/ModuleUIConfigurationManager.java6
-rw-r--r--qadevOOo/tests/java/mod/_fwk/UIConfigurationManager.java6
-rw-r--r--qadevOOo/tests/java/mod/_remotebridge/uno/various.java10
-rw-r--r--qadevOOo/tests/java/mod/_remotebridge/various.java6
-rw-r--r--qadevOOo/tests/java/mod/_sc/ScAccessibleCsvCell.java4
-rw-r--r--qadevOOo/tests/java/mod/_sc/ScAccessibleCsvGrid.java4
-rw-r--r--qadevOOo/tests/java/mod/_sc/ScAccessibleCsvRuler.java4
-rw-r--r--qadevOOo/tests/java/mod/_sc/ScDataPilotFieldGroupItemObj.java2
-rw-r--r--qadevOOo/tests/java/mod/_sc/ScDataPilotFieldGroupObj.java2
-rw-r--r--qadevOOo/tests/java/mod/_sc/ScDataPilotFieldGroupsObj.java2
-rw-r--r--qadevOOo/tests/java/mod/_sc/ScDataPilotFieldObj.java2
-rw-r--r--qadevOOo/tests/java/mod/_sc/ScDataPilotItemObj.java2
-rw-r--r--qadevOOo/tests/java/mod/_sc/ScDataPilotItemsObj.java2
-rw-r--r--qadevOOo/tests/java/mod/_sc/ScIndexEnumeration_DataPilotItemsEnumeration.java2
-rw-r--r--qadevOOo/tests/java/mod/_toolkit/UnoTreeControl.java2
15 files changed, 28 insertions, 28 deletions
diff --git a/qadevOOo/tests/java/mod/_fwk/ModuleUIConfigurationManager.java b/qadevOOo/tests/java/mod/_fwk/ModuleUIConfigurationManager.java
index 3496c783a97a..e572e3dfa953 100644
--- a/qadevOOo/tests/java/mod/_fwk/ModuleUIConfigurationManager.java
+++ b/qadevOOo/tests/java/mod/_fwk/ModuleUIConfigurationManager.java
@@ -124,9 +124,9 @@ public class ModuleUIConfigurationManager extends TestCase {
*/
public static class ConfigurationListener implements _XUIConfiguration.XUIConfigurationListenerImpl {
private boolean triggered = false;
- private PrintWriter log = null;
- private XUIConfigurationManager xUIManager = null;
- private XMultiServiceFactory xMSF = null;
+ private final PrintWriter log;
+ private final XUIConfigurationManager xUIManager;
+ private final XMultiServiceFactory xMSF;
public ConfigurationListener(PrintWriter _log, XUIConfigurationManager xUIManager, XMultiServiceFactory xMSF) {
log = _log;
diff --git a/qadevOOo/tests/java/mod/_fwk/UIConfigurationManager.java b/qadevOOo/tests/java/mod/_fwk/UIConfigurationManager.java
index 787abf174d06..75d78cdc71be 100644
--- a/qadevOOo/tests/java/mod/_fwk/UIConfigurationManager.java
+++ b/qadevOOo/tests/java/mod/_fwk/UIConfigurationManager.java
@@ -116,9 +116,9 @@ public class UIConfigurationManager extends TestCase {
*/
public static class ConfigurationListener implements _XUIConfiguration.XUIConfigurationListenerImpl {
private boolean triggered = false;
- private PrintWriter log = null;
- private XUIConfigurationManager xUIManager = null;
- private XMultiServiceFactory xMSF = null;
+ private final PrintWriter log;
+ private final XUIConfigurationManager xUIManager;
+ private final XMultiServiceFactory xMSF;
private static int iUniqueCounter;
public ConfigurationListener(PrintWriter _log, XUIConfigurationManager xUIManager, XMultiServiceFactory xMSF) {
diff --git a/qadevOOo/tests/java/mod/_remotebridge/uno/various.java b/qadevOOo/tests/java/mod/_remotebridge/uno/various.java
index 71f7a5af6ec7..438fcbba83cb 100644
--- a/qadevOOo/tests/java/mod/_remotebridge/uno/various.java
+++ b/qadevOOo/tests/java/mod/_remotebridge/uno/various.java
@@ -66,7 +66,7 @@ public class various extends TestCase {
* which is free.
*/
protected static final int basePort = 50000;
- private int curPort = 50000;
+ private final int curPort = 50000;
private XAcceptor xAcctr;
private XConnector xCntr;
@@ -86,7 +86,7 @@ public class various extends TestCase {
*
* @see com.sun.star.lang.MultiServiceFactory
*/
- private XMultiServiceFactory xMSF = null;
+ private final XMultiServiceFactory xMSF;
/**
* Construct object with a MultiServiceFactory
@@ -124,9 +124,9 @@ public class various extends TestCase {
* stored in this field.
*/
public Exception ex = null ;
- private XAcceptor acc = null ;
- private XInstanceProvider xInstProv = null ;
- private XBridgeFactory xBrdgFctr = null;
+ private final XAcceptor acc;
+ private final XInstanceProvider xInstProv;
+ private final XBridgeFactory xBrdgFctr;
/**
* If method call returns some value it stores in this field.
*/
diff --git a/qadevOOo/tests/java/mod/_remotebridge/various.java b/qadevOOo/tests/java/mod/_remotebridge/various.java
index a3caa518fd05..4983092f37d3 100644
--- a/qadevOOo/tests/java/mod/_remotebridge/various.java
+++ b/qadevOOo/tests/java/mod/_remotebridge/various.java
@@ -67,7 +67,7 @@ public class various extends TestCase {
* which is free.
*/
protected static final int basePort = 50000;
- private int curPort = 50000;
+ private final int curPort = 50000;
private XAcceptor xAcctr;
private XConnector xCntr;
@@ -87,7 +87,7 @@ public class various extends TestCase {
*
* @see com.sun.star.lang.MultiServiceFactory
*/
- private XMultiServiceFactory xMSF = null;
+ private final XMultiServiceFactory xMSF;
/**
* Construct object with a MultiServiceFactory
@@ -125,7 +125,7 @@ public class various extends TestCase {
* stored in this field.
*/
public Exception ex = null ;
- private XAcceptor acc = null ;
+ private final XAcceptor acc;
/**
* If method call returns some value it stores in this field.
*/
diff --git a/qadevOOo/tests/java/mod/_sc/ScAccessibleCsvCell.java b/qadevOOo/tests/java/mod/_sc/ScAccessibleCsvCell.java
index 129504654821..13f53b277378 100644
--- a/qadevOOo/tests/java/mod/_sc/ScAccessibleCsvCell.java
+++ b/qadevOOo/tests/java/mod/_sc/ScAccessibleCsvCell.java
@@ -170,8 +170,8 @@ public class ScAccessibleCsvCell extends TestCase {
public class loadThread extends Thread {
- private SOfficeFactory SOF = null ;
- private PropertyValue[] args = null;
+ private final SOfficeFactory SOF;
+ private final PropertyValue[] args;
public XComponent xSpreadSheedDoc = null;
public loadThread(SOfficeFactory SOF, PropertyValue[] Args) {
diff --git a/qadevOOo/tests/java/mod/_sc/ScAccessibleCsvGrid.java b/qadevOOo/tests/java/mod/_sc/ScAccessibleCsvGrid.java
index 0dc1d8754ff5..1237e9817f11 100644
--- a/qadevOOo/tests/java/mod/_sc/ScAccessibleCsvGrid.java
+++ b/qadevOOo/tests/java/mod/_sc/ScAccessibleCsvGrid.java
@@ -156,8 +156,8 @@ public class ScAccessibleCsvGrid extends TestCase {
public class loadThread extends Thread {
- private SOfficeFactory SOF = null ;
- private PropertyValue[] args = null;
+ private final SOfficeFactory SOF;
+ private final PropertyValue[] args;
public XComponent xSpreadSheedDoc = null;
public loadThread(SOfficeFactory SOF, PropertyValue[] Args) {
diff --git a/qadevOOo/tests/java/mod/_sc/ScAccessibleCsvRuler.java b/qadevOOo/tests/java/mod/_sc/ScAccessibleCsvRuler.java
index 41f33cc78117..45c3f9e4e16e 100644
--- a/qadevOOo/tests/java/mod/_sc/ScAccessibleCsvRuler.java
+++ b/qadevOOo/tests/java/mod/_sc/ScAccessibleCsvRuler.java
@@ -191,8 +191,8 @@ public class ScAccessibleCsvRuler extends TestCase {
public class loadThread extends Thread {
- private SOfficeFactory SOF = null ;
- private PropertyValue[] args = null;
+ private final SOfficeFactory SOF;
+ private final PropertyValue[] args;
public XComponent xSpreadSheedDoc = null;
public loadThread(SOfficeFactory SOF, PropertyValue[] Args) {
diff --git a/qadevOOo/tests/java/mod/_sc/ScDataPilotFieldGroupItemObj.java b/qadevOOo/tests/java/mod/_sc/ScDataPilotFieldGroupItemObj.java
index 2ac0c175e414..2467ee34b6a1 100644
--- a/qadevOOo/tests/java/mod/_sc/ScDataPilotFieldGroupItemObj.java
+++ b/qadevOOo/tests/java/mod/_sc/ScDataPilotFieldGroupItemObj.java
@@ -56,7 +56,7 @@ public class ScDataPilotFieldGroupItemObj extends TestCase
* A field is filled some values. This integer determines the size of the
* field in x and y direction.
*/
- private int mMaxFieldIndex = 6;
+ private final int mMaxFieldIndex = 6;
/**
* Creates Spreadsheet document.
diff --git a/qadevOOo/tests/java/mod/_sc/ScDataPilotFieldGroupObj.java b/qadevOOo/tests/java/mod/_sc/ScDataPilotFieldGroupObj.java
index a815bb2d2518..af23d1e24d15 100644
--- a/qadevOOo/tests/java/mod/_sc/ScDataPilotFieldGroupObj.java
+++ b/qadevOOo/tests/java/mod/_sc/ScDataPilotFieldGroupObj.java
@@ -55,7 +55,7 @@ public class ScDataPilotFieldGroupObj extends TestCase
* A field is filled some values. This integer determines the size of the
* field in x and y direction.
*/
- private int mMaxFieldIndex = 6;
+ private final int mMaxFieldIndex = 6;
/**
* Creates Spreadsheet document.
diff --git a/qadevOOo/tests/java/mod/_sc/ScDataPilotFieldGroupsObj.java b/qadevOOo/tests/java/mod/_sc/ScDataPilotFieldGroupsObj.java
index 52a36ed1ad99..5aa809eb50b1 100644
--- a/qadevOOo/tests/java/mod/_sc/ScDataPilotFieldGroupsObj.java
+++ b/qadevOOo/tests/java/mod/_sc/ScDataPilotFieldGroupsObj.java
@@ -55,7 +55,7 @@ public class ScDataPilotFieldGroupsObj extends TestCase
* A field is filled some values. This integer determines the size of the
* field in x and y direction.
*/
- private int mMaxFieldIndex = 6;
+ private final int mMaxFieldIndex = 6;
/**
* Creates Spreadsheet document.
diff --git a/qadevOOo/tests/java/mod/_sc/ScDataPilotFieldObj.java b/qadevOOo/tests/java/mod/_sc/ScDataPilotFieldObj.java
index 2c668328a51b..01d49050ef25 100644
--- a/qadevOOo/tests/java/mod/_sc/ScDataPilotFieldObj.java
+++ b/qadevOOo/tests/java/mod/_sc/ScDataPilotFieldObj.java
@@ -69,7 +69,7 @@ public class ScDataPilotFieldObj extends TestCase {
* A field is filled some values. This integer determines the size of the
* field in x and y direction.
*/
- private int mMaxFieldIndex = 6;
+ private final int mMaxFieldIndex = 6;
/**
* Creates Spreadsheet document.
diff --git a/qadevOOo/tests/java/mod/_sc/ScDataPilotItemObj.java b/qadevOOo/tests/java/mod/_sc/ScDataPilotItemObj.java
index 5c01cf02c933..2c6e029fb729 100644
--- a/qadevOOo/tests/java/mod/_sc/ScDataPilotItemObj.java
+++ b/qadevOOo/tests/java/mod/_sc/ScDataPilotItemObj.java
@@ -70,7 +70,7 @@ public class ScDataPilotItemObj extends TestCase {
* A field is filled some values. This integer determines the size of the
* field in x and y direction.
*/
- private int mMaxFieldIndex = 6;
+ private final int mMaxFieldIndex = 6;
/**
* Creates Spreadsheet document.
diff --git a/qadevOOo/tests/java/mod/_sc/ScDataPilotItemsObj.java b/qadevOOo/tests/java/mod/_sc/ScDataPilotItemsObj.java
index b9274917425d..9baca8760aaf 100644
--- a/qadevOOo/tests/java/mod/_sc/ScDataPilotItemsObj.java
+++ b/qadevOOo/tests/java/mod/_sc/ScDataPilotItemsObj.java
@@ -70,7 +70,7 @@ public class ScDataPilotItemsObj extends TestCase {
* A field is filled some values. This integer determines the size of the
* field in x and y direction.
*/
- private int mMaxFieldIndex = 6;
+ private final int mMaxFieldIndex = 6;
/**
* Creates Spreadsheet document.
diff --git a/qadevOOo/tests/java/mod/_sc/ScIndexEnumeration_DataPilotItemsEnumeration.java b/qadevOOo/tests/java/mod/_sc/ScIndexEnumeration_DataPilotItemsEnumeration.java
index 705457967406..ffc09302a435 100644
--- a/qadevOOo/tests/java/mod/_sc/ScIndexEnumeration_DataPilotItemsEnumeration.java
+++ b/qadevOOo/tests/java/mod/_sc/ScIndexEnumeration_DataPilotItemsEnumeration.java
@@ -72,7 +72,7 @@ public class ScIndexEnumeration_DataPilotItemsEnumeration
* A field is filled some values. This integer determines the size of the
* field in x and y direction.
*/
- private int mMaxFieldIndex = 6;
+ private final int mMaxFieldIndex = 6;
/**
* Creates Spreadsheet document.
diff --git a/qadevOOo/tests/java/mod/_toolkit/UnoTreeControl.java b/qadevOOo/tests/java/mod/_toolkit/UnoTreeControl.java
index 7c0645ef4964..1fc6c51fe8c5 100644
--- a/qadevOOo/tests/java/mod/_toolkit/UnoTreeControl.java
+++ b/qadevOOo/tests/java/mod/_toolkit/UnoTreeControl.java
@@ -256,7 +256,7 @@ public class UnoTreeControl extends TestCase {
}
private class execurteDialog extends Thread{
- private XDialog mXDialog;
+ private final XDialog mXDialog;
public execurteDialog(XDialog xDialog){
mXDialog = xDialog;