diff options
Diffstat (limited to 'ucb/qa/complex')
-rw-r--r-- | ucb/qa/complex/tdoc/_XChild.java | 2 | ||||
-rw-r--r-- | ucb/qa/complex/tdoc/_XCommandInfoChangeNotifier.java | 2 | ||||
-rw-r--r-- | ucb/qa/complex/tdoc/_XCommandProcessor.java | 2 | ||||
-rw-r--r-- | ucb/qa/complex/tdoc/_XComponent.java | 6 | ||||
-rw-r--r-- | ucb/qa/complex/tdoc/_XContent.java | 2 | ||||
-rw-r--r-- | ucb/qa/complex/tdoc/_XPropertiesChangeNotifier.java | 4 | ||||
-rw-r--r-- | ucb/qa/complex/tdoc/_XPropertyContainer.java | 2 | ||||
-rw-r--r-- | ucb/qa/complex/tdoc/_XPropertySetInfoChangeNotifier.java | 2 | ||||
-rw-r--r-- | ucb/qa/complex/tdoc/_XServiceInfo.java | 2 | ||||
-rw-r--r-- | ucb/qa/complex/tdoc/_XTypeProvider.java | 2 |
10 files changed, 13 insertions, 13 deletions
diff --git a/ucb/qa/complex/tdoc/_XChild.java b/ucb/qa/complex/tdoc/_XChild.java index 8d80e7856f46..ad23bf180152 100644 --- a/ucb/qa/complex/tdoc/_XChild.java +++ b/ucb/qa/complex/tdoc/_XChild.java @@ -36,7 +36,7 @@ public class _XChild { public XChild oObj = null; private Object gotten = null; - private LogWriter log = null; + private final LogWriter log = null; /** diff --git a/ucb/qa/complex/tdoc/_XCommandInfoChangeNotifier.java b/ucb/qa/complex/tdoc/_XCommandInfoChangeNotifier.java index d4bedba2235f..01297c0936a7 100644 --- a/ucb/qa/complex/tdoc/_XCommandInfoChangeNotifier.java +++ b/ucb/qa/complex/tdoc/_XCommandInfoChangeNotifier.java @@ -26,7 +26,7 @@ import com.sun.star.ucb.XCommandInfoChangeNotifier; public class _XCommandInfoChangeNotifier { public XCommandInfoChangeNotifier oObj = null; - private CommandInfoChangeListener listener = new CommandInfoChangeListener(); + private final CommandInfoChangeListener listener = new CommandInfoChangeListener(); public boolean _addCommandInfoChangeListener() { oObj.addCommandInfoChangeListener(listener); diff --git a/ucb/qa/complex/tdoc/_XCommandProcessor.java b/ucb/qa/complex/tdoc/_XCommandProcessor.java index f1598217ba96..fba9912c1001 100644 --- a/ucb/qa/complex/tdoc/_XCommandProcessor.java +++ b/ucb/qa/complex/tdoc/_XCommandProcessor.java @@ -71,7 +71,7 @@ public class _XCommandProcessor { * Conatins the tested object. */ public XCommandProcessor oObj; - private LogWriter log = null; + private final LogWriter log = null; private XMultiServiceFactory xMSF = null; /** diff --git a/ucb/qa/complex/tdoc/_XComponent.java b/ucb/qa/complex/tdoc/_XComponent.java index dc09c04f6440..13958ec51169 100644 --- a/ucb/qa/complex/tdoc/_XComponent.java +++ b/ucb/qa/complex/tdoc/_XComponent.java @@ -38,7 +38,7 @@ import share.LogWriter; public class _XComponent { public static XComponent oObj = null; - private LogWriter log = null; + private final LogWriter log = null; private boolean listenerDisposed[] = new boolean[2]; private String[] Loutput = new String[2]; @@ -65,8 +65,8 @@ public class _XComponent { } } - private XEventListener listener1 = new MyEventListener(); - private XEventListener listener2 = new MyEventListener2(); + private final XEventListener listener1 = new MyEventListener(); + private final XEventListener listener2 = new MyEventListener2(); /** * For the cfgmgr2.OSetElement tests: dispose the owner element. diff --git a/ucb/qa/complex/tdoc/_XContent.java b/ucb/qa/complex/tdoc/_XContent.java index 735c40167eaa..327439c8573f 100644 --- a/ucb/qa/complex/tdoc/_XContent.java +++ b/ucb/qa/complex/tdoc/_XContent.java @@ -24,7 +24,7 @@ import share.LogWriter; public class _XContent { public XContent oObj = null; - private LogWriter log = null; + private final LogWriter log = null; private ContentListener listener = null; public boolean _addContentEventListener() { diff --git a/ucb/qa/complex/tdoc/_XPropertiesChangeNotifier.java b/ucb/qa/complex/tdoc/_XPropertiesChangeNotifier.java index a3c8692ab911..14d9639cd8c1 100644 --- a/ucb/qa/complex/tdoc/_XPropertiesChangeNotifier.java +++ b/ucb/qa/complex/tdoc/_XPropertiesChangeNotifier.java @@ -27,8 +27,8 @@ public class _XPropertiesChangeNotifier { public XPropertiesChangeNotifier oObj = null; - private PropertiesChangeListener listener = new PropertiesChangeListener(); - private String[] args = null; + private final PropertiesChangeListener listener = new PropertiesChangeListener(); + private String[] args; public boolean _addPropertiesChangeListener() { diff --git a/ucb/qa/complex/tdoc/_XPropertyContainer.java b/ucb/qa/complex/tdoc/_XPropertyContainer.java index 7bb5fa01ec0a..a5c996b83964 100644 --- a/ucb/qa/complex/tdoc/_XPropertyContainer.java +++ b/ucb/qa/complex/tdoc/_XPropertyContainer.java @@ -22,7 +22,7 @@ import share.LogWriter; public class _XPropertyContainer { public XPropertyContainer oObj = null; - private LogWriter log = null; + private final LogWriter log = null; public boolean _addProperty() { boolean result = true; diff --git a/ucb/qa/complex/tdoc/_XPropertySetInfoChangeNotifier.java b/ucb/qa/complex/tdoc/_XPropertySetInfoChangeNotifier.java index 7461f1df137b..f69829ce5d49 100644 --- a/ucb/qa/complex/tdoc/_XPropertySetInfoChangeNotifier.java +++ b/ucb/qa/complex/tdoc/_XPropertySetInfoChangeNotifier.java @@ -27,7 +27,7 @@ public class _XPropertySetInfoChangeNotifier { public XPropertySetInfoChangeNotifier oObj = null; - private PropertySetInfoChangeListener listener = new PropertySetInfoChangeListener(); + private final PropertySetInfoChangeListener listener = new PropertySetInfoChangeListener(); diff --git a/ucb/qa/complex/tdoc/_XServiceInfo.java b/ucb/qa/complex/tdoc/_XServiceInfo.java index 63f979b75618..a58b6ac4b0da 100644 --- a/ucb/qa/complex/tdoc/_XServiceInfo.java +++ b/ucb/qa/complex/tdoc/_XServiceInfo.java @@ -35,7 +35,7 @@ import share.LogWriter; public class _XServiceInfo { public static XServiceInfo oObj = null; private static String[] names = null; - private LogWriter log = null; + private final LogWriter log = null; /** * Just calls the method.<p> diff --git a/ucb/qa/complex/tdoc/_XTypeProvider.java b/ucb/qa/complex/tdoc/_XTypeProvider.java index 2622db30f946..506566dc4244 100644 --- a/ucb/qa/complex/tdoc/_XTypeProvider.java +++ b/ucb/qa/complex/tdoc/_XTypeProvider.java @@ -36,7 +36,7 @@ public class _XTypeProvider { public static XTypeProvider oObj = null; private static Type[] types = null; - private LogWriter log = null; + private final LogWriter log = null; /** * Just calls the method.<p> |