KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > javax > accessibility > AccessibleTextSequence


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  
10 /**
11  * <P>The AccessibleTextSequence provides information about
12  * a contiguous sequence of text.
13  *
14  * @see Accessible
15  * @see Accessible#getAccessibleContext
16  * @see AccessibleContext
17  * @see AccessibleContext#getAccessibleText
18  * @see AccessibleAttributeSequence
19  *
20  * @version 1.2 12/19/03
21  * @author Lynn Monsanto
22  */

23  
24 /**
25  * Information about a contiguous sequence of text.
26  */

27 public class AccessibleTextSequence {
28     public int startIndex; // the start index of the text sequence
29
public int endIndex; // the end index of the text sequence
30
public String JavaDoc text; // the text
31
};
32
33
Popular Tags