Lines Matching refs:newParagraph
644 * @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) {
665 fStart = newParagraph.getBeginIndex();
666 int end = newParagraph.getEndIndex();
668 initAll(newParagraph);
675 char newChar = newParagraph.setIndex(insertPos);
685 newParagraph.getAttribute(TextAttribute.BIDI_EMBEDDING) != null) {
687 fBidi = new Bidi(newParagraph);
693 fParagraph = StyledParagraph.insertChar(newParagraph,
710 * @param newParagraph the text of the paragraph after performing
714 * the start of <code>newParagraph</code>, and must not be greater than the
715 * end of <code>newParagraph</code>.
717 * less than the start of <code>newParagraph</code> or greater
718 * than the end of <code>newParagraph</code>
719 * @throws NullPointerException if <code>newParagraph</code> is
722 public void deleteChar(AttributedCharacterIterator newParagraph, int deletePos) {
724 fStart = newParagraph.getBeginIndex();
725 int end = newParagraph.getEndIndex();
727 initAll(newParagraph);
738 fBidi = new Bidi(newParagraph);
744 fParagraph = StyledParagraph.deleteChar(newParagraph,