Searched defs:getParagraphElement (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DPlainDocument.java162 public Element getParagraphElement(int pos){ method in class:PlainDocument
H A DStyledDocument.java134 public Element getParagraphElement(int pos); method in interface:StyledDocument
H A DUtilities.java631 Element line = getParagraphElement(c, offs);
665 Element line = getParagraphElement(c, offs);
698 Element line = getParagraphElement(c, offs);
705 line = getParagraphElement(c, offs);
776 Element line = getParagraphElement(c, offs);
783 line = getParagraphElement(c, offs);
847 public static final Element getParagraphElement(JTextComponent c, int offs) { method in class:Utilities
850 return ((StyledDocument)doc).getParagraphElement(offs);
H A DAbstractDocument.java86 * <code>getParagraphElement(getLength()).getEndOffset() == getLength() + 1
940 public abstract Element getParagraphElement(int pos); method in class:AbstractDocument
1034 firstPStart = getParagraphElement(chngStart).getStartOffset();
1035 lastPEnd = getParagraphElement(chngEnd).getEndOffset();
1037 Element paragraph = getParagraphElement( chng.getOffset() );
1188 Element p = getParagraphElement( o );
H A DDefaultStyledDocument.java436 Element paragraph = getParagraphElement(pos);
467 Element paragraph = getParagraphElement(p);
595 public Element getParagraphElement(int pos) { method in class:DefaultStyledDocument
642 Element paragraph = getParagraphElement(offset + length);
645 Element pParagraph = getParagraphElement(offset);
H A DJTextComponent.java3044 private Element getParagraphElement(int index) { method in class:JTextComponent.AccessibleJTextComponent
3047 return sdoc.getParagraphElement(index);
3050 return sdoc.getParagraphElement(index);
3071 Element para = getParagraphElement(index);
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DAccessibleHTML.java1071 private Element getParagraphElement(int index) { method in class:AccessibleHTML.TextElementInfo.TextAccessibleContext
1074 return sdoc.getParagraphElement(index);
1077 return sdoc.getParagraphElement(index);
1098 Element para = getParagraphElement(index);

Completed in 73 milliseconds