summaryrefslogtreecommitdiff
path: root/odk
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2013-04-15 04:49:39 +0200
committerThomas Arnhold <thomas@arnhold.org>2013-04-15 04:49:39 +0200
commit60fbefc615f8931bf8b952293fc4eb4ac35dafd8 (patch)
tree2a91fcbcb206d60dcc652a336bb9b6813578815e /odk
parent7f71ed1c62775a4e5b2efebf55f284a5c32b2df4 (diff)
fdo#60724 informations -> information
Change-Id: Ifd34ebfc7fe01b4a470eb072597dd3ec97c97863
Diffstat (limited to 'odk')
-rw-r--r--odk/examples/DevelopersGuide/Components/Addons/JobsAddon/AsyncJob.java4
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/CustomizeView.java2
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/DocumentView.java2
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/FunctionHelper.java2
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/NativeView.java2
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/OfficeConnect.java2
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusView.java4
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/OfficeConnect.java2
8 files changed, 10 insertions, 10 deletions
diff --git a/odk/examples/DevelopersGuide/Components/Addons/JobsAddon/AsyncJob.java b/odk/examples/DevelopersGuide/Components/Addons/JobsAddon/AsyncJob.java
index 835024df64d9..260ac5597e9e 100644
--- a/odk/examples/DevelopersGuide/Components/Addons/JobsAddon/AsyncJob.java
+++ b/odk/examples/DevelopersGuide/Components/Addons/JobsAddon/AsyncJob.java
@@ -78,7 +78,7 @@ public class AsyncJob extends WeakBase implements XServiceInfo, XAsyncJob
* <ul>
* <li>generic job configuration data</li>
* <li>job specific configuration data</li>
- * <li>some environment informations</li>
+ * <li>some environment information</li>
* <li>may optional arguments of a corresponding dispatch request</li>
* </ul>
*
@@ -330,7 +330,7 @@ public class AsyncJob extends WeakBase implements XServiceInfo, XAsyncJob
* contains all job sepcific configuration items
*
* @param lEnvironment
- * contains some environment informations
+ * contains some environment information
*
* @param lDynamicData
* contains optional data of a might corresponding dispatch() request
diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/CustomizeView.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/CustomizeView.java
index 6a618304de45..a21011c59fef 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/CustomizeView.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/CustomizeView.java
@@ -127,7 +127,7 @@ public class CustomizeView extends JPanel
*
* @param xFrame
* the reference to the frame, which provides the
- * possibility to get the required status informations
+ * possibility to get the required status information
*
* Attention: We don't accept new frames here.
* We get one after startup and work with him.
diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/DocumentView.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/DocumentView.java
index 6d1d6e507d9e..c0e165edab7a 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/DocumentView.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/DocumentView.java
@@ -47,7 +47,7 @@ import java.awt.event.WindowEvent;
/**
* This implement a java frame wich contains
- * an office document, shows some status informations
+ * an office document, shows some status information
* about that, provides simple functionality on it
* (e.g. toggle menubar, save document) and
* react for different situations independent
diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/FunctionHelper.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/FunctionHelper.java
index 6058e010ee24..3fb237ffb20c 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/FunctionHelper.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/FunctionHelper.java
@@ -356,7 +356,7 @@ public class FunctionHelper
// create an office window then
// Depending from the given parameter aParentView it will be a child or a top level
- // system window. (see impl method for further informations)
+ // system window. (see impl method for further information)
// But before we call this helper - prepare the possible parent window: show it.
// JNI calls to get system window handle of java window can't work without that!
if (aParentView!=null)
diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/NativeView.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/NativeView.java
index 8d36e0462af5..da6078a6a905 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/NativeView.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/NativeView.java
@@ -71,7 +71,7 @@ public class NativeView extends java.awt.Canvas
/**
* Overload this method to make neccessary initializations here.
- * (e.g. get the window handle and neccessary system informations)
+ * (e.g. get the window handle and neccessary system information)
*
* Why here?
* Because the handle seams to be available for already visible windows
diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/OfficeConnect.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/OfficeConnect.java
index c76d1e4c1525..4af8213ea286 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/OfficeConnect.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/OfficeConnect.java
@@ -89,7 +89,7 @@ public class OfficeConnect
* m_xRemoteContext wich means remote component context of the connected office.
* The context can be used to get the remote service manager from the office.
* We made it private to support singleton pattern of these implementation.
- * see getConnection() for further informations
+ * see getConnection() for further information
*/
private OfficeConnect()
{
diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusView.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusView.java
index 621972606e6a..f4a5c5f7487f 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusView.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusView.java
@@ -41,9 +41,9 @@ import java.lang.String;
// __________ Implementation __________
/**
- * Implement a view to show status informations
+ * Implement a view to show status information
* of currently loaded document of a document view.
- * It use seperate listener threads to get this informations
+ * It use seperate listener threads to get this information
* and actualize it automaticly if frame broadcast changes of
* his contained document.
* Threads are neccessary to prevent this view against deadlocks.
diff --git a/odk/examples/DevelopersGuide/OfficeDev/OfficeConnect.java b/odk/examples/DevelopersGuide/OfficeDev/OfficeConnect.java
index 49bbd9db82bd..1efa20c4fc1b 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/OfficeConnect.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/OfficeConnect.java
@@ -82,7 +82,7 @@ public class OfficeConnect
* ctor
* We try to open the connection in our ctor ... transparently for the user.
* We made it private to support singleton pattern of these implementation.
- * see getConnection() for further informations
+ * see getConnection() for further information
*/
private OfficeConnect() throws java.lang.Exception
{