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;
}
final int nonWordChars = actualWordStart - this.wordStart;