summaryrefslogtreecommitdiff
path: root/qadevOOo/tests/java/ifc/lang
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2010-12-04 13:28:03 +0900
committerCaolán McNamara <caolanm@redhat.com>2010-12-05 19:13:22 +0000
commitf20ff43473f1d33be368d61b8d0f6bcbb644df14 (patch)
tree9bff166cbb029acf5c3a7a7a68d67151ae47d9e3 /qadevOOo/tests/java/ifc/lang
parente98d09d0ad16a6bd843f0b691d39dd0bac4ff357 (diff)
Replace all occured, occurance etc.
Diffstat (limited to 'qadevOOo/tests/java/ifc/lang')
-rw-r--r--qadevOOo/tests/java/ifc/lang/_XInitialization.java8
-rw-r--r--qadevOOo/tests/java/ifc/lang/_XMain.java2
-rw-r--r--qadevOOo/tests/java/ifc/lang/_XMultiComponentFactory.java6
-rw-r--r--qadevOOo/tests/java/ifc/lang/_XMultiServiceFactory.java4
-rw-r--r--qadevOOo/tests/java/ifc/lang/_XServiceInfo.java4
-rw-r--r--qadevOOo/tests/java/ifc/lang/_XSingleServiceFactory.java4
-rw-r--r--qadevOOo/tests/java/ifc/lang/_XTypeProvider.java2
7 files changed, 15 insertions, 15 deletions
diff --git a/qadevOOo/tests/java/ifc/lang/_XInitialization.java b/qadevOOo/tests/java/ifc/lang/_XInitialization.java
index 4ce7fe05a410..767d77951b67 100644
--- a/qadevOOo/tests/java/ifc/lang/_XInitialization.java
+++ b/qadevOOo/tests/java/ifc/lang/_XInitialization.java
@@ -77,20 +77,20 @@ public class _XInitialization extends MultiMethodTest {
result = false;
xInit.initialize(ExArgs);
} catch (com.sun.star.uno.Exception e) {
- log.println("Expected Exception 'com.sun.star.uno.Exception' occured -> OK") ;
+ log.println("Expected Exception 'com.sun.star.uno.Exception' occurred -> OK") ;
result = true ;
} catch (com.sun.star.uno.RuntimeException e) {
- log.println("Expected Exception 'com.sun.star.uno.RuntimeException' occured -> OK") ;
+ log.println("Expected Exception 'com.sun.star.uno.RuntimeException' occurred -> OK") ;
result = true ;
} catch (Exception e) {
- log.println("Un-Expected Exception occured -> FALSE") ;
+ log.println("Un-Expected Exception occurred -> FALSE") ;
log.println(e.toString());
e.printStackTrace();
}
}
} catch (com.sun.star.uno.Exception e) {
- log.println("Exception occured while method calling.") ;
+ log.println("Exception occurred while method calling.") ;
log.println(e) ;
result = false ;
}
diff --git a/qadevOOo/tests/java/ifc/lang/_XMain.java b/qadevOOo/tests/java/ifc/lang/_XMain.java
index e1cecaeb1849..d91b466bfb58 100644
--- a/qadevOOo/tests/java/ifc/lang/_XMain.java
+++ b/qadevOOo/tests/java/ifc/lang/_XMain.java
@@ -55,7 +55,7 @@ public class _XMain extends MultiMethodTest{
/**
* Just calls the method. <p>
*
- * Has <b> OK </b> status if no runtime exceptions occured.
+ * Has <b> OK </b> status if no runtime exceptions occurred.
*/
public void _run() {
String[] args = (String[])tEnv.getObjRelation("ARGS");
diff --git a/qadevOOo/tests/java/ifc/lang/_XMultiComponentFactory.java b/qadevOOo/tests/java/ifc/lang/_XMultiComponentFactory.java
index 4abeca730765..f5436d8931e4 100644
--- a/qadevOOo/tests/java/ifc/lang/_XMultiComponentFactory.java
+++ b/qadevOOo/tests/java/ifc/lang/_XMultiComponentFactory.java
@@ -58,7 +58,7 @@ public class _XMultiComponentFactory extends MultiMethodTest {
/**
* Calls the method with one of the available service names
* obtained by method getAvailableServiceNames. <p>
- * Has <b> OK </b> status if no runtime exceptions occured
+ * Has <b> OK </b> status if no runtime exceptions occurred
* and returned value is not null.
*/
public void _createInstanceWithContext() {
@@ -81,7 +81,7 @@ public class _XMultiComponentFactory extends MultiMethodTest {
/**
* Calls the method with one of the available service names
* obtained by method getAvailableServiceNames. <p>
- * Has <b> OK </b> status if no runtime exceptions occured
+ * Has <b> OK </b> status if no runtime exceptions occurred
* and returned value is not null.
*/
public void _createInstanceWithArgumentsAndContext() {
@@ -103,7 +103,7 @@ public class _XMultiComponentFactory extends MultiMethodTest {
/**
* Just calls the method. <p>
- * Has <b> OK </b> status if no runtime exceptions occured
+ * Has <b> OK </b> status if no runtime exceptions occurred
* and returned value is not null.
*/
public void _getAvailableServiceNames() {
diff --git a/qadevOOo/tests/java/ifc/lang/_XMultiServiceFactory.java b/qadevOOo/tests/java/ifc/lang/_XMultiServiceFactory.java
index 49d3be1daf35..393bfdc89f6b 100644
--- a/qadevOOo/tests/java/ifc/lang/_XMultiServiceFactory.java
+++ b/qadevOOo/tests/java/ifc/lang/_XMultiServiceFactory.java
@@ -133,7 +133,7 @@ public class _XMultiServiceFactory extends MultiMethodTest {
Object Inst = oObj.createInstance(services[k]);
res = (Inst != null);
} catch (com.sun.star.uno.Exception ex) {
- log.println("Exception occured during createInstance()");
+ log.println("Exception occurred during createInstance()");
ex.printStackTrace(log);
res = false;
}
@@ -185,7 +185,7 @@ public class _XMultiServiceFactory extends MultiMethodTest {
res &= (Inst != null);
} catch (com.sun.star.uno.Exception ex) {
log.println(
- "Exception occured during createInstanceWithArguments()");
+ "Exception occurred during createInstanceWithArguments()");
ex.printStackTrace(log);
res = false;
}
diff --git a/qadevOOo/tests/java/ifc/lang/_XServiceInfo.java b/qadevOOo/tests/java/ifc/lang/_XServiceInfo.java
index 3ff929c895dd..928359a498b9 100644
--- a/qadevOOo/tests/java/ifc/lang/_XServiceInfo.java
+++ b/qadevOOo/tests/java/ifc/lang/_XServiceInfo.java
@@ -48,7 +48,7 @@ public class _XServiceInfo extends MultiMethodTest {
/**
* Just calls the method.<p>
- * Has <b>OK</b> status if no runtime exceptions occured.
+ * Has <b>OK</b> status if no runtime exceptions occurred.
*/
public void _getImplementationName() {
boolean result = true;
@@ -64,7 +64,7 @@ public class _XServiceInfo extends MultiMethodTest {
/**
* Just calls the method.<p>
- * Has <b>OK</b> status if no runtime exceptions occured.
+ * Has <b>OK</b> status if no runtime exceptions occurred.
*/
public void _getSupportedServiceNames() {
boolean result = true;
diff --git a/qadevOOo/tests/java/ifc/lang/_XSingleServiceFactory.java b/qadevOOo/tests/java/ifc/lang/_XSingleServiceFactory.java
index 1bc68938ce41..c07760be1906 100644
--- a/qadevOOo/tests/java/ifc/lang/_XSingleServiceFactory.java
+++ b/qadevOOo/tests/java/ifc/lang/_XSingleServiceFactory.java
@@ -112,7 +112,7 @@ public class _XSingleServiceFactory extends MultiMethodTest {
tRes.tested("createInstance()",
(negative && Inst == null) || (!negative && bOK));
} catch (com.sun.star.uno.Exception ex) {
- log.println("Exception occured during createInstance()");
+ log.println("Exception occurred during createInstance()");
if (negative) {
ex.printStackTrace(log);
}
@@ -157,7 +157,7 @@ public class _XSingleServiceFactory extends MultiMethodTest {
tRes.tested("createInstanceWithArguments()", bOK);
}
catch (com.sun.star.uno.Exception ex) {
- log.println("Exception occured during createInstanceWithArguments()");
+ log.println("Exception occurred during createInstanceWithArguments()");
ex.printStackTrace(log);
tRes.tested("createInstanceWithArguments()",false);
}
diff --git a/qadevOOo/tests/java/ifc/lang/_XTypeProvider.java b/qadevOOo/tests/java/ifc/lang/_XTypeProvider.java
index 123f7729fb5a..f6bb0af16e18 100644
--- a/qadevOOo/tests/java/ifc/lang/_XTypeProvider.java
+++ b/qadevOOo/tests/java/ifc/lang/_XTypeProvider.java
@@ -49,7 +49,7 @@ public class _XTypeProvider extends MultiMethodTest {
/**
* Just calls the method.<p>
- * Has <b>OK</b> status if no runtime exceptions occured.
+ * Has <b>OK</b> status if no runtime exceptions occurred.
*/
public void _getImplementationId() {
boolean result = true;