summaryrefslogtreecommitdiff
path: root/qadevOOo/tests/java/mod/_streams
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-06-08 14:06:08 +0200
committerNoel Grandin <noel@peralex.com>2015-06-08 14:06:54 +0200
commitb9dd51782ceba70bda091191349d31767b7bf744 (patch)
treeb08a32be30934595e9bdcf98e877f16a3d170e68 /qadevOOo/tests/java/mod/_streams
parentc1692f620610621a139e54fb1f9d11d4c177608d (diff)
some spelling fixes, mostly in Java code
Change-Id: Ib9d0522a1f371404ee990348712e2d196049f69f
Diffstat (limited to 'qadevOOo/tests/java/mod/_streams')
-rw-r--r--qadevOOo/tests/java/mod/_streams/uno/DataInputStream.java2
-rw-r--r--qadevOOo/tests/java/mod/_streams/uno/DataOutputStream.java2
-rw-r--r--qadevOOo/tests/java/mod/_streams/uno/MarkableInputStream.java2
-rw-r--r--qadevOOo/tests/java/mod/_streams/uno/MarkableOutputStream.java2
-rw-r--r--qadevOOo/tests/java/mod/_streams/uno/ObjectInputStream.java2
-rw-r--r--qadevOOo/tests/java/mod/_streams/uno/ObjectOutputStream.java2
-rw-r--r--qadevOOo/tests/java/mod/_streams/uno/Pipe.java2
-rw-r--r--qadevOOo/tests/java/mod/_streams/uno/Pump.java2
8 files changed, 8 insertions, 8 deletions
diff --git a/qadevOOo/tests/java/mod/_streams/uno/DataInputStream.java b/qadevOOo/tests/java/mod/_streams/uno/DataInputStream.java
index 289bbed71e4f..96106c8156bc 100644
--- a/qadevOOo/tests/java/mod/_streams/uno/DataInputStream.java
+++ b/qadevOOo/tests/java/mod/_streams/uno/DataInputStream.java
@@ -55,7 +55,7 @@ import lib.TestParameters;
public class DataInputStream extends TestCase {
/**
- * Creates a Testenvironment for the interfaces to be tested.
+ * Creates a TestEnvironment for the interfaces to be tested.
* Creates <code>com.sun.star.io.DataInputStream</code> object,
* connects it to <code>com.sun.star.io.DataOutputStream</code>
* through <code>com.sun.star.io.Pipe</code>. All of possible data
diff --git a/qadevOOo/tests/java/mod/_streams/uno/DataOutputStream.java b/qadevOOo/tests/java/mod/_streams/uno/DataOutputStream.java
index a6117d399200..d4024ea4a1c8 100644
--- a/qadevOOo/tests/java/mod/_streams/uno/DataOutputStream.java
+++ b/qadevOOo/tests/java/mod/_streams/uno/DataOutputStream.java
@@ -52,7 +52,7 @@ import lib.TestParameters;
public class DataOutputStream extends TestCase {
/**
- * Creating a Testenvironment for the interfaces to be tested.
+ * Creating a TestEnvironment for the interfaces to be tested.
* Creates an instance of the service
* <code>com.sun.star.io.DataOutputStream</code>
* and an instance of the service <code>com.sun.star.io.Pipe</code>.
diff --git a/qadevOOo/tests/java/mod/_streams/uno/MarkableInputStream.java b/qadevOOo/tests/java/mod/_streams/uno/MarkableInputStream.java
index bd3c9f3e3039..27ef1259fab8 100644
--- a/qadevOOo/tests/java/mod/_streams/uno/MarkableInputStream.java
+++ b/qadevOOo/tests/java/mod/_streams/uno/MarkableInputStream.java
@@ -54,7 +54,7 @@ import lib.TestParameters;
public class MarkableInputStream extends TestCase {
/**
- * Creating a Testenvironment for the interfaces to be tested.
+ * Creating a TestEnvironment for the interfaces to be tested.
* Creates an instances of services <code>com.sun.star.io.Pipe</code>,
* <code>com.sun.star.io.MarkableInputStream</code> and
* <code>com.sun.star.io.MarkableOutputStream</code>.
diff --git a/qadevOOo/tests/java/mod/_streams/uno/MarkableOutputStream.java b/qadevOOo/tests/java/mod/_streams/uno/MarkableOutputStream.java
index 529f345bc91f..487721ba5d6e 100644
--- a/qadevOOo/tests/java/mod/_streams/uno/MarkableOutputStream.java
+++ b/qadevOOo/tests/java/mod/_streams/uno/MarkableOutputStream.java
@@ -55,7 +55,7 @@ import lib.TestParameters;
public class MarkableOutputStream extends TestCase {
/**
- * Creating a Testenvironment for the interfaces to be tested.
+ * Creating a TestEnvironment for the interfaces to be tested.
* Creates an instances of services <code>com.sun.star.io.Pipe</code>,
* <code>com.sun.star.io.MarkableInputStream</code> and
* <code>com.sun.star.io.MarkableOutputStream</code>.
diff --git a/qadevOOo/tests/java/mod/_streams/uno/ObjectInputStream.java b/qadevOOo/tests/java/mod/_streams/uno/ObjectInputStream.java
index 6647b6c0abb5..60f86033ce92 100644
--- a/qadevOOo/tests/java/mod/_streams/uno/ObjectInputStream.java
+++ b/qadevOOo/tests/java/mod/_streams/uno/ObjectInputStream.java
@@ -125,7 +125,7 @@ public class ObjectInputStream extends TestCase {
}
/**
- * Creating a Testenvironment for the interfaces to be tested.
+ * Creating a TestEnvironment for the interfaces to be tested.
* Creates an instances of services
* <code>com.sun.star.io.ObjectInputStream</code>,
* <code>com.sun.star.io.ObjectOutputStream</code>,
diff --git a/qadevOOo/tests/java/mod/_streams/uno/ObjectOutputStream.java b/qadevOOo/tests/java/mod/_streams/uno/ObjectOutputStream.java
index 304174405744..8bb6383579d2 100644
--- a/qadevOOo/tests/java/mod/_streams/uno/ObjectOutputStream.java
+++ b/qadevOOo/tests/java/mod/_streams/uno/ObjectOutputStream.java
@@ -121,7 +121,7 @@ public class ObjectOutputStream extends TestCase {
}
/**
- * Creating a Testenvironment for the interfaces to be tested.
+ * Creating a TestEnvironment for the interfaces to be tested.
* Creates an instances of services
* <code>com.sun.star.io.ObjectOutputStream</code>,
* <code>com.sun.star.io.Pipe</code> and
diff --git a/qadevOOo/tests/java/mod/_streams/uno/Pipe.java b/qadevOOo/tests/java/mod/_streams/uno/Pipe.java
index 5b23f0bcdeb1..c90df923ab45 100644
--- a/qadevOOo/tests/java/mod/_streams/uno/Pipe.java
+++ b/qadevOOo/tests/java/mod/_streams/uno/Pipe.java
@@ -45,7 +45,7 @@ import lib.TestParameters;
public class Pipe extends TestCase {
/**
- * Creating a Testenvironment for the interfaces to be tested.
+ * Creating a TestEnvironment for the interfaces to be tested.
* Creates an instance of the service <code>com.sun.star.io.Pipe</code>.
* Writes some information to the created pipe.
* Object relations created :
diff --git a/qadevOOo/tests/java/mod/_streams/uno/Pump.java b/qadevOOo/tests/java/mod/_streams/uno/Pump.java
index 51c2d4dd670f..6deae46d2429 100644
--- a/qadevOOo/tests/java/mod/_streams/uno/Pump.java
+++ b/qadevOOo/tests/java/mod/_streams/uno/Pump.java
@@ -52,7 +52,7 @@ import lib.TestParameters;
public class Pump extends TestCase {
/**
- * Creating a Testenvironment for the interfaces to be tested.
+ * Creating a TestEnvironment for the interfaces to be tested.
* Creates an instance of the service <code>com.sun.star.io.Pump</code>.
* Settings up input and output streams for the created pump.
* Object relations created :