1. /*
  2. * @(#)AccessibleAttributeSequence.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. import javax.swing.text.AttributeSet;
  9. /**
  10. * <P>The AccessibleAttributeSequence provides information about
  11. * a contiguous sequence of text attributes
  12. *
  13. * @see Accessible
  14. * @see Accessible#getAccessibleContext
  15. * @see AccessibleContext
  16. * @see AccessibleContext#getAccessibleText
  17. * @see AccessibleTextSequence
  18. *
  19. * @version 1.2 12/19/03
  20. * @author Lynn Monsanto
  21. */
  22. /**
  23. * Information about a contiguous sequence of text attributes
  24. */
  25. public class AccessibleAttributeSequence {
  26. public int startIndex; // the start index of the text attribute sequence
  27. public int endIndex; // the end index of the text attribute sequence
  28. public AttributeSet attributes; // the text attributes
  29. };