summaryrefslogtreecommitdiff
path: root/embeddedobj
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2015-01-08 23:08:34 +0100
committerMichael Stahl <mstahl@redhat.com>2015-01-09 00:00:47 +0100
commit2f69e16c723aab48ad59d17397d8946ec0a48138 (patch)
treef59943e7a27ad60eda30cab8cdc3e8e716401db2 /embeddedobj
parentd7bebc89c19d70344a8d71c729bbcb3a59004114 (diff)
override the overloading of "overload" to decrease cognitive (over-)load
Change-Id: I4d0e1de89d0bbdbea23bc5a46bf75ae0ce4e2796
Diffstat (limited to 'embeddedobj')
-rw-r--r--embeddedobj/test/Container1/NativeView.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/embeddedobj/test/Container1/NativeView.java b/embeddedobj/test/Container1/NativeView.java
index dcc4b6b8fca6..d53cc155a425 100644
--- a/embeddedobj/test/Container1/NativeView.java
+++ b/embeddedobj/test/Container1/NativeView.java
@@ -43,7 +43,7 @@ public class NativeView extends java.awt.Canvas
* ctor
* Does nothing really.
* We can use our JNI mechanism for an already visible
- * canvas only. So we overload the method for showing ( "setVisible()" )
+ * canvas only. So we override the method for showing ( "setVisible()" )
* and make our intialization there. BUt we try to show an empty clean
* window till there.
*/
@@ -57,7 +57,7 @@ public class NativeView extends java.awt.Canvas
/**
- * Overload this method to make necessary initializations here.
+ * Override this method to make necessary initializations here.
* ( e.g. get the window handle and necessary system information )
*
* Why here?
@@ -96,7 +96,7 @@ public class NativeView extends java.awt.Canvas
/**
- * overload paint routine to show provide against
+ * override paint routine to show provide against
* repaint errors if no office view is really plugged
* into this canvas.
* If handle is present - we shouldn't paint anything further.