Lines Matching refs:part

351      * directly override setUIProperty because part of the inheritance heirarchy
453 * @param part the <code>CHARACTER</code>, <code>WORD</code> or
456 * @return a <code>String</code> if <code>part</code> and
466 public String getAtIndex(int part, int index) {
468 if (part == AccessibleText.CHARACTER) {
469 str = super.getAtIndex(part, index);
486 * @param part the <code>CHARACTER</code>, <code>WORD</code> or
489 * @return a <code>String</code> if <code>part</code> and
499 public String getAfterIndex(int part, int index) {
500 if (part == AccessibleText.CHARACTER) {
501 String str = super.getAfterIndex(part, index);
513 * @param part the <code>CHARACTER</code>, <code>WORD</code> or
516 * @return a <code>String</code> if <code>part</code> and
526 public String getBeforeIndex(int part, int index) {
527 if (part == AccessibleText.CHARACTER) {
528 String str = super.getBeforeIndex(part, index);
557 * @param part the <code>CHARACTER</code>, <code>WORD</code>,
562 * <code>part</code> and <code>index</code> are valid. Otherwise,
573 public AccessibleTextSequence getTextSequenceAt(int part, int index) {
574 if (part == AccessibleText.CHARACTER) {
575 AccessibleTextSequence seq = super.getTextSequenceAt(part, index);
599 * @param part the <code>CHARACTER</code>, <code>WORD</code>,
604 * <code>part</code> and <code>index</code> are valid. Otherwise,
615 public AccessibleTextSequence getTextSequenceAfter(int part, int index) {
616 if (part == AccessibleText.CHARACTER) {
617 AccessibleTextSequence seq = super.getTextSequenceAfter(part, index);
634 * @param part the <code>CHARACTER</code>, <code>WORD</code>,
639 * <code>part</code> and <code>index</code> are valid. Otherwise,
650 public AccessibleTextSequence getTextSequenceBefore(int part, int index) {
651 if (part == AccessibleText.CHARACTER) {
652 AccessibleTextSequence seq = super.getTextSequenceBefore(part, index);