summaryrefslogtreecommitdiff
path: root/qadevOOo/tests/java/ifc/util
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/util
parente98d09d0ad16a6bd843f0b691d39dd0bac4ff357 (diff)
Replace all occured, occurance etc.
Diffstat (limited to 'qadevOOo/tests/java/ifc/util')
-rw-r--r--qadevOOo/tests/java/ifc/util/_XCancellable.java2
-rw-r--r--qadevOOo/tests/java/ifc/util/_XChangesNotifier.java10
-rw-r--r--qadevOOo/tests/java/ifc/util/_XCloneable.java2
-rw-r--r--qadevOOo/tests/java/ifc/util/_XFlushable.java2
-rw-r--r--qadevOOo/tests/java/ifc/util/_XModeSelector.java8
-rw-r--r--qadevOOo/tests/java/ifc/util/_XModifyBroadcaster.java4
-rw-r--r--qadevOOo/tests/java/ifc/util/_XSearchable.java2
-rw-r--r--qadevOOo/tests/java/ifc/util/_XTextSearch.java2
8 files changed, 16 insertions, 16 deletions
diff --git a/qadevOOo/tests/java/ifc/util/_XCancellable.java b/qadevOOo/tests/java/ifc/util/_XCancellable.java
index cd7ffc0840b5..ca135c75af3f 100644
--- a/qadevOOo/tests/java/ifc/util/_XCancellable.java
+++ b/qadevOOo/tests/java/ifc/util/_XCancellable.java
@@ -46,7 +46,7 @@ public class _XCancellable extends MultiMethodTest {
/**
* Just calls the method. <p>
- * Has <b>OK</b> status if no exception has occured. <p>
+ * Has <b>OK</b> status if no exception has occurred. <p>
*/
public void _cancel() {
oObj.cancel() ;
diff --git a/qadevOOo/tests/java/ifc/util/_XChangesNotifier.java b/qadevOOo/tests/java/ifc/util/_XChangesNotifier.java
index 6899f13d8ae2..1aed93a6b2c8 100644
--- a/qadevOOo/tests/java/ifc/util/_XChangesNotifier.java
+++ b/qadevOOo/tests/java/ifc/util/_XChangesNotifier.java
@@ -59,27 +59,27 @@ public class _XChangesNotifier extends MultiMethodTest {
*/
private static class MyChangesListener implements XChangesListener {
/** Just lo a call of the listener **/
- boolean bChangesOccured = false;
+ boolean bChangesOccurred = false;
/** A change did occur
* @param changesEvent The event.
**/
public void changesOccurred(com.sun.star.util.ChangesEvent changesEvent) {
- bChangesOccured = true;
+ bChangesOccurred = true;
}
/** Disposing of the listener
* @param eventObject The event.
**/
public void disposing(com.sun.star.lang.EventObject eventObject) {
- bChangesOccured = true;
+ bChangesOccurred = true;
}
/**
* Reset the listener
*/
public void reset() {
- bChangesOccured = false;
+ bChangesOccurred = false;
}
/**
@@ -87,7 +87,7 @@ public class _XChangesNotifier extends MultiMethodTest {
* @return True, if the listener has been called.
*/
public boolean didChangesOccur() {
- return bChangesOccured;
+ return bChangesOccurred;
}
}
diff --git a/qadevOOo/tests/java/ifc/util/_XCloneable.java b/qadevOOo/tests/java/ifc/util/_XCloneable.java
index 4591be5cfc2e..3b9301a538a8 100644
--- a/qadevOOo/tests/java/ifc/util/_XCloneable.java
+++ b/qadevOOo/tests/java/ifc/util/_XCloneable.java
@@ -51,7 +51,7 @@ public class _XCloneable extends MultiMethodTest {
/**
* calls the method. <p>
- * Has <b>OK</b> status if no exception has occured. <p>
+ * Has <b>OK</b> status if no exception has occurred. <p>
*/
public void _createClone() {
boolean result = true;
diff --git a/qadevOOo/tests/java/ifc/util/_XFlushable.java b/qadevOOo/tests/java/ifc/util/_XFlushable.java
index c18d84e5d5f6..83a325b213b3 100644
--- a/qadevOOo/tests/java/ifc/util/_XFlushable.java
+++ b/qadevOOo/tests/java/ifc/util/_XFlushable.java
@@ -68,7 +68,7 @@ public class _XFlushable extends MultiMethodTest {
/**
* Test call method <code>flush</code> and checks if added listener
* was called and removed one wasn't. <p>
- * Has OK status if no exception has occured. <p>
+ * Has OK status if no exception has occurred. <p>
* Methods to be executed before :
* {@link #_addFlushListener},
* {@link #_removeFlushListener}
diff --git a/qadevOOo/tests/java/ifc/util/_XModeSelector.java b/qadevOOo/tests/java/ifc/util/_XModeSelector.java
index fddf9850ca02..f189a3c39a64 100644
--- a/qadevOOo/tests/java/ifc/util/_XModeSelector.java
+++ b/qadevOOo/tests/java/ifc/util/_XModeSelector.java
@@ -50,7 +50,7 @@ public class _XModeSelector extends MultiMethodTest {
/**
* Calls the method and as argument pass one of the supported modes
* that was returned by method getSupportedMode.<p>
- * Has <b> OK </b> status if no runtime exceptions occured.
+ * Has <b> OK </b> status if no runtime exceptions occurred.
*/
public void _setMode() {
requiredMethod("getSupportedModes()");
@@ -67,7 +67,7 @@ public class _XModeSelector extends MultiMethodTest {
/**
* Calls the method and check returned value.<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 equal to value that was set by method setMode.
*/
public void _getMode() {
@@ -78,7 +78,7 @@ public class _XModeSelector extends MultiMethodTest {
/**
* Calls the method and checks value returned by 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 _getSupportedModes() {
@@ -91,7 +91,7 @@ public class _XModeSelector extends MultiMethodTest {
* by method getSupportedMode is passed as argument.
* Then the method is called again and the mode that is certainly not supported
* is passed. Checks up returned values in both cases.<p>
- * Has <b> OK </b> status if no runtime exceptions occured,
+ * Has <b> OK </b> status if no runtime exceptions occurred,
* returned value is true in first call and is false in second call.
*/
public void _supportsMode() {
diff --git a/qadevOOo/tests/java/ifc/util/_XModifyBroadcaster.java b/qadevOOo/tests/java/ifc/util/_XModifyBroadcaster.java
index 34ca57c63cfe..bd797fbf33ae 100644
--- a/qadevOOo/tests/java/ifc/util/_XModifyBroadcaster.java
+++ b/qadevOOo/tests/java/ifc/util/_XModifyBroadcaster.java
@@ -64,7 +64,7 @@ public class _XModifyBroadcaster 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 _addModifyListener() {
log.println("'Modified' events are called only in case"+
@@ -75,7 +75,7 @@ public class _XModifyBroadcaster 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 _removeModifyListener() {
requiredMethod("addModifyListener()");
diff --git a/qadevOOo/tests/java/ifc/util/_XSearchable.java b/qadevOOo/tests/java/ifc/util/_XSearchable.java
index 91c3014387df..27a243e0e326 100644
--- a/qadevOOo/tests/java/ifc/util/_XSearchable.java
+++ b/qadevOOo/tests/java/ifc/util/_XSearchable.java
@@ -129,7 +129,7 @@ public class _XSearchable extends MultiMethodTest {
/**
* Performs search using descriptor created before. Storing the
- * first occurence result. <p>
+ * first occurrence result. <p>
* Has <b> OK </b> status if the method not <code>null</code>
* value. <p>
* The following method tests are to be completed successfully before :
diff --git a/qadevOOo/tests/java/ifc/util/_XTextSearch.java b/qadevOOo/tests/java/ifc/util/_XTextSearch.java
index 4f701c087f71..d84d8fa3f725 100644
--- a/qadevOOo/tests/java/ifc/util/_XTextSearch.java
+++ b/qadevOOo/tests/java/ifc/util/_XTextSearch.java
@@ -60,7 +60,7 @@ public class _XTextSearch extends MultiMethodTest {
/**
* Sets options for searching regular expression in a string,
* ignoring case. <p>
- * Has <b>OK</b> status if no runtime exceptions occured.
+ * Has <b>OK</b> status if no runtime exceptions occurred.
*/
public void _setOptions() {