1. /*
  2. * @(#)AccessibleTextSequence.java 1.2 03/12/19
  3. *
  4. * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
  5. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  6. */
  7. package javax.accessibility;
  8. /**
  9. * <P>The AccessibleTextSequence provides information about
  10. * a contiguous sequence of text.
  11. *
  12. * @see Accessible
  13. * @see Accessible#getAccessibleContext
  14. * @see AccessibleContext
  15. * @see AccessibleContext#getAccessibleText
  16. * @see AccessibleAttributeSequence
  17. *
  18. * @version 1.2 12/19/03
  19. * @author Lynn Monsanto
  20. */
  21. /**
  22. * Information about a contiguous sequence of text.
  23. */
  24. public class AccessibleTextSequence {
  25. public int startIndex; // the start index of the text sequence
  26. public int endIndex; // the end index of the text sequence
  27. public String text; // the text
  28. };