javax.accessibility
public interface AccessibleEditableText extends AccessibleText
The AccessibleContext.getAccessibleEditableText()
method
should return null
if an object does not implement this
interface.
Since: 1.2
See Also: Accessible AccessibleContext getAccessibleText getAccessibleEditableText
UNKNOWN: updated to 1.4, except for javax.swing support
Method Summary | |
---|---|
void | cut(int start, int end)
Cut the text between two points to the system clipboard.
|
void | delete(int start, int end)
Delete the text between two points.
|
String | getTextRange(int start, int end)
Return the text between two points.
|
void | insertTextAtIndex(int index, String s)
Inserts the given string at the specified location.
|
void | paste(int start)
Paste the text from the system clipboard at the given index.
|
void | replaceText(int start, int end, String s)
Replace the text between two points with the given string.
|
void | selectText(int start, int stop)
Select the text between two points.
|
void | setAttributes(int start, int end, AttributeSet s)
Set the attributes of text between two points.
|
void | setTextContents(String s)
Set the text contents to the given string.
|
Parameters: start the start position, inclusive end the end position, exclusive
Parameters: start the start position, inclusive end the end position, exclusive
Parameters: start the start position, inclusive end the end position, exclusive
Parameters: index the index for insertion s the new text
Parameters: start the start position
Parameters: start the start position, inclusive end the end position, exclusive s the string to paste
Parameters: start the start position, inclusive end the end position, exclusive
Parameters: start the start position, inclusive end the end position, exclusive s the new attribute set for the range
Parameters: s the new text