Searched refs:offsetLimit (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/java/awt/font/
H A DLineBreakMeasurer.java337 * @param offsetLimit the first character that can not be included
339 * within the wrapping width; <code>offsetLimit</code> must be
348 public int nextOffset(float wrappingWidth, int offsetLimit, argument
354 if (offsetLimit <= pos) {
355 throw new IllegalArgumentException("offsetLimit must be after current position");
396 if (nextOffset > offsetLimit) {
397 nextOffset = offsetLimit;
421 * @param offsetLimit the first character that can not be
423 * would fit within the wrapping width; <code>offsetLimit</code>
436 public TextLayout nextLayout(float wrappingWidth, int offsetLimit, argument
[all...]

Completed in 92 milliseconds