Lines Matching defs:index

451          * Returns the <code>String</code> at a given <code>index</code>.
455 * @param index an index within the text
457 * <code>index</code> are valid.
466 public String getAtIndex(int part, int index) {
469 str = super.getAtIndex(part, index);
475 index < 0 || index >= password.length) {
484 * Returns the <code>String</code> after a given <code>index</code>.
488 * @param index an index within the text
490 * <code>index</code> are valid.
499 public String getAfterIndex(int part, int index) {
501 String str = super.getAfterIndex(part, index);
511 * Returns the <code>String</code> before a given <code>index</code>.
515 * @param index an index within the text
517 * <code>index</code> are valid.
526 public String getBeforeIndex(int part, int index) {
528 String str = super.getBeforeIndex(part, index);
540 * @param startIndex the start index in the text
541 * @param endIndex the end index in the text
555 * <code>index</code>.
560 * @param index an index within the text
562 * <code>part</code> and <code>index</code> are valid. Otherwise,
573 public AccessibleTextSequence getTextSequenceAt(int part, int index) {
575 AccessibleTextSequence seq = super.getTextSequenceAt(part, index);
586 index < 0 || index >= password.length) {
597 * <code>index</code>.
602 * @param index an index within the text
604 * <code>part</code> and <code>index</code> are valid. Otherwise,
615 public AccessibleTextSequence getTextSequenceAfter(int part, int index) {
617 AccessibleTextSequence seq = super.getTextSequenceAfter(part, index);
632 * <code>index</code>.
637 * @param index an index within the text
639 * <code>part</code> and <code>index</code> are valid. Otherwise,
650 public AccessibleTextSequence getTextSequenceBefore(int part, int index) {
652 AccessibleTextSequence seq = super.getTextSequenceBefore(part, index);