summaryrefslogtreecommitdiff
path: root/odk/examples/DevelopersGuide/OfficeDev/Linguistic/XHyphenatedWord_impl.java
diff options
context:
space:
mode:
Diffstat (limited to 'odk/examples/DevelopersGuide/OfficeDev/Linguistic/XHyphenatedWord_impl.java')
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/Linguistic/XHyphenatedWord_impl.java16
1 files changed, 8 insertions, 8 deletions
diff --git a/odk/examples/DevelopersGuide/OfficeDev/Linguistic/XHyphenatedWord_impl.java b/odk/examples/DevelopersGuide/OfficeDev/Linguistic/XHyphenatedWord_impl.java
index 47405dd38a89..08fd7ab6dde6 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/Linguistic/XHyphenatedWord_impl.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/Linguistic/XHyphenatedWord_impl.java
@@ -2,7 +2,7 @@
*
* The Contents of this file are made available subject to the terms of
* the BSD license.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
* All rights reserved.
*
@@ -29,7 +29,7 @@
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
* TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
* USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
+ *
*************************************************************************/
import com.sun.star.lang.Locale;
@@ -45,10 +45,10 @@ public class XHyphenatedWord_impl implements
boolean bIsAltSpelling;
public XHyphenatedWord_impl(
- String aWord,
- Locale aLang,
+ String aWord,
+ Locale aLang,
short nHyphenationPos,
- String aHyphenatedWord,
+ String aHyphenatedWord,
short nHyphenPos )
{
this.aWord = aWord;
@@ -58,7 +58,7 @@ public class XHyphenatedWord_impl implements
this.nHyphenPos = nHyphenPos;
this.bIsAltSpelling = (aWord != aHyphenatedWord);
- //!! none of these cases should ever occur!
+ //!! none of these cases should ever occur!
//!! values provided only for safety
if (this.aWord == null)
this.aWord = new String();
@@ -67,7 +67,7 @@ public class XHyphenatedWord_impl implements
if (this.aHyphenatedWord == null)
this.aHyphenatedWord = new String();
}
-
+
// XHyphenatedWord
public String getWord() throws com.sun.star.uno.RuntimeException
@@ -86,7 +86,7 @@ public class XHyphenatedWord_impl implements
{
return aHyphenatedWord;
}
- public short getHyphenPos() throws com.sun.star.uno.RuntimeException
+ public short getHyphenPos() throws com.sun.star.uno.RuntimeException
{
return nHyphenPos;
}