summaryrefslogtreecommitdiff
path: root/wizards/com/sun/star/wizards/common
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-11-09 11:25:04 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-11-09 11:14:56 +0000
commitb5df54c5bcaa376117832e39f63a379e7b8ba201 (patch)
treec123ef229bcf9bfbf5167bf7942002bff10d6053 /wizards/com/sun/star/wizards/common
parenta3db4959b07d2454fba7774f04c7658ae4fba783 (diff)
java: add some @Override annotations
Change-Id: I291db1dff5ab3ce40fda6f822a0e3ff1e6ef36c1 Reviewed-on: https://gerrit.libreoffice.org/19855 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'wizards/com/sun/star/wizards/common')
-rw-r--r--wizards/com/sun/star/wizards/common/PlaceholderTextElement.java1
-rw-r--r--wizards/com/sun/star/wizards/common/TextElement.java1
2 files changed, 2 insertions, 0 deletions
diff --git a/wizards/com/sun/star/wizards/common/PlaceholderTextElement.java b/wizards/com/sun/star/wizards/common/PlaceholderTextElement.java
index 60ec7eb6aed0..72778d5edcbe 100644
--- a/wizards/com/sun/star/wizards/common/PlaceholderTextElement.java
+++ b/wizards/com/sun/star/wizards/common/PlaceholderTextElement.java
@@ -38,6 +38,7 @@ public class PlaceholderTextElement extends TextElement
xmsf = xmsf_;
}
+ @Override
public void write(Object textRange)
{
super.write(textRange);
diff --git a/wizards/com/sun/star/wizards/common/TextElement.java b/wizards/com/sun/star/wizards/common/TextElement.java
index 08afd2dbe511..a8ee641e1d77 100644
--- a/wizards/com/sun/star/wizards/common/TextElement.java
+++ b/wizards/com/sun/star/wizards/common/TextElement.java
@@ -37,6 +37,7 @@ public class TextElement extends ParaStyled
text = text_;
}
+ @Override
public void write(Object textRange)
{
UnoRuntime.queryInterface(XTextRange.class, textRange).setString(text);