Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/openjdk-multiarch-jdk8u
Path: blob/aarch64-shenandoah-jdk8u272-b10/jdk/src/share/classes/javax/accessibility/AccessibleExtendedText.java
38829 views
1
/*
2
* Copyright (c) 2003, 2006, Oracle and/or its affiliates. All rights reserved.
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
*
5
* This code is free software; you can redistribute it and/or modify it
6
* under the terms of the GNU General Public License version 2 only, as
7
* published by the Free Software Foundation. Oracle designates this
8
* particular file as subject to the "Classpath" exception as provided
9
* by Oracle in the LICENSE file that accompanied this code.
10
*
11
* This code is distributed in the hope that it will be useful, but WITHOUT
12
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14
* version 2 for more details (a copy is included in the LICENSE file that
15
* accompanied this code).
16
*
17
* You should have received a copy of the GNU General Public License version
18
* 2 along with this work; if not, write to the Free Software Foundation,
19
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20
*
21
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22
* or visit www.oracle.com if you need additional information or have any
23
* questions.
24
*/
25
26
package javax.accessibility;
27
28
29
import java.util.*;
30
import java.awt.*;
31
import javax.swing.text.*;
32
33
34
/**
35
* <P>The AccessibleExtendedText interface contains additional methods
36
* not provided by the AccessibleText interface
37
*
38
* Applications can determine if an object supports the AccessibleExtendedText
39
* interface by first obtaining its AccessibleContext (see {@link Accessible})
40
* and then calling the {@link AccessibleContext#getAccessibleText} method of
41
* AccessibleContext. If the return value is an instance of
42
* AccessibleExtendedText, the object supports this interface.
43
*
44
* @see Accessible
45
* @see Accessible#getAccessibleContext
46
* @see AccessibleContext
47
* @see AccessibleContext#getAccessibleText
48
*
49
* @author Peter Korn
50
* @author Lynn Monsanto
51
* @since 1.5
52
*/
53
public interface AccessibleExtendedText {
54
55
/**
56
* Constant used to indicate that the part of the text that should be
57
* retrieved is a line of text.
58
*
59
* @see AccessibleText#getAtIndex
60
* @see AccessibleText#getAfterIndex
61
* @see AccessibleText#getBeforeIndex
62
*/
63
public static final int LINE = 4; // BugID: 4849720
64
65
/**
66
* Constant used to indicate that the part of the text that should be
67
* retrieved is contiguous text with the same text attributes.
68
*
69
* @see AccessibleText#getAtIndex
70
* @see AccessibleText#getAfterIndex
71
* @see AccessibleText#getBeforeIndex
72
*/
73
public static final int ATTRIBUTE_RUN = 5; // BugID: 4849720
74
75
/**
76
* Returns the text between two indices
77
*
78
* @param startIndex the start index in the text
79
* @param endIndex the end index in the text
80
* @return the text string if the indices are valid.
81
* Otherwise, null is returned.
82
*/
83
public String getTextRange(int startIndex, int endIndex);
84
85
/**
86
* Returns the <code>AccessibleTextSequence</code> at a given index.
87
*
88
* @param part the <code>CHARACTER</code>, <code>WORD</code>,
89
* <code>SENTENCE</code>, <code>LINE</code> or <code>ATTRIBUTE_RUN</code>
90
* to retrieve
91
* @param index an index within the text
92
* @return an <code>AccessibleTextSequence</code> specifying the text
93
* if part and index are valid. Otherwise, null is returned.
94
*
95
* @see AccessibleText#CHARACTER
96
* @see AccessibleText#WORD
97
* @see AccessibleText#SENTENCE
98
*/
99
public AccessibleTextSequence getTextSequenceAt(int part, int index);
100
101
/**
102
* Returns the <code>AccessibleTextSequence</code> after a given index.
103
*
104
* @param part the <code>CHARACTER</code>, <code>WORD</code>,
105
* <code>SENTENCE</code>, <code>LINE</code> or <code>ATTRIBUTE_RUN</code>
106
* to retrieve
107
* @param index an index within the text
108
* @return an <code>AccessibleTextSequence</code> specifying the text
109
* if part and index are valid. Otherwise, null is returned.
110
*
111
* @see AccessibleText#CHARACTER
112
* @see AccessibleText#WORD
113
* @see AccessibleText#SENTENCE
114
*/
115
public AccessibleTextSequence getTextSequenceAfter(int part, int index);
116
117
/**
118
* Returns the <code>AccessibleTextSequence</code> before a given index.
119
*
120
* @param part the <code>CHARACTER</code>, <code>WORD</code>,
121
* <code>SENTENCE</code>, <code>LINE</code> or <code>ATTRIBUTE_RUN</code>
122
* to retrieve
123
* @param index an index within the text
124
* @return an <code>AccessibleTextSequence</code> specifying the text
125
* if part and index are valid. Otherwise, null is returned.
126
*
127
* @see AccessibleText#CHARACTER
128
* @see AccessibleText#WORD
129
* @see AccessibleText#SENTENCE
130
*/
131
public AccessibleTextSequence getTextSequenceBefore(int part, int index);
132
133
/**
134
* Returns the bounding rectangle of the text between two indices.
135
*
136
* @param startIndex the start index in the text
137
* @param endIndex the end index in the text
138
* @return the bounding rectangle of the text if the indices are valid.
139
* Otherwise, null is returned.
140
*/
141
public Rectangle getTextBounds(int startIndex, int endIndex);
142
}
143
144