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