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

/openjdk7/jdk/src/share/classes/java/awt/font/
H A DLineBreakMeasurer.java486 * @param newParagraph the text after the insertion
490 * than the start of <code>newParagraph</code> or greater than
491 * or equal to the end of <code>newParagraph</code>
492 * @throws NullPointerException if <code>newParagraph</code> is
496 public void insertChar(AttributedCharacterIterator newParagraph, argument
499 measurer.insertChar(newParagraph, insertPos);
501 limit = newParagraph.getEndIndex();
502 pos = start = newParagraph.getBeginIndex();
504 charIter.reset(measurer.getChars(), newParagraph.getBeginIndex());
512 * @param newParagraph th
522 deleteChar(AttributedCharacterIterator newParagraph, int deletePos) argument
[all...]
H A DTextMeasurer.java644 * @param newParagraph the text of the paragraph after performing
648 * <code>newParagraph</code>, and must be less than the end of
649 * <code>newParagraph</code>.
651 * than the start of <code>newParagraph</code> or greater than
652 * or equal to the end of <code>newParagraph</code>
653 * @throws NullPointerException if <code>newParagraph</code> is
656 public void insertChar(AttributedCharacterIterator newParagraph, int insertPos) { argument
665 fStart = newParagraph.getBeginIndex();
666 int end = newParagraph.getEndIndex();
668 initAll(newParagraph);
722 deleteChar(AttributedCharacterIterator newParagraph, int deletePos) argument
[all...]

Completed in 91 milliseconds