90919293949596979899100
float lineWidth = 0; int lastWhitespaceIndex = -1; Font effectiveFont = getEffectiveFont(); char c = ci.first(); while (c != CharacterIterator.DONE && lineWidth < breakWidth) { if (Character.isWhitespace(c)) { lastWhitespaceIndex = ci.getIndex(); }
155156157158159160161162163164165
949596979899100101102103104