* LineText items to find the beginning of the word.
*/
final HyphenationServer server =
this.getTextServer().getHyphenationServer();
final Language language = this.currentLineText.inlineLanguage();
final Country country = this.currentLineText.inlineCountry();
// Count the number of chars at the beginning that should be ignored.
final int actualWordStart = server.wordStarts(this.currentChars,
this.wordStart, language, country);
if (actualWordStart < 0) {
return this.wordStart;