Lines Matching refs:newParagraph
486 * @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,
499 measurer.insertChar(newParagraph, insertPos);
501 limit = newParagraph.getEndIndex();
502 pos = start = newParagraph.getBeginIndex();
504 charIter.reset(measurer.getChars(), newParagraph.getBeginIndex());
512 * @param newParagraph the text after the deletion
516 * less than the start of <code>newParagraph</code> or greater
517 * than the end of <code>newParagraph</code>
518 * @throws NullPointerException if <code>newParagraph</code> is
522 public void deleteChar(AttributedCharacterIterator newParagraph,
525 measurer.deleteChar(newParagraph, deletePos);
527 limit = newParagraph.getEndIndex();
528 pos = start = newParagraph.getBeginIndex();