FileDocCategorySizeDatePackage
AccessibleEditableText.javaAPI DocJava SE 6 API3678Tue Jun 10 00:26:02 BST 2008javax.accessibility

AccessibleEditableText

public interface AccessibleEditableText implements AccessibleText

The AccessibleEditableText interface should be implemented by all classes that present editable textual information on the display. Along with the AccessibleText interface, this interface provides the standard mechanism for an assistive technology to access that text via its content, attributes, and spatial location. Applications can determine if an object supports the AccessibleEditableText interface by first obtaining its AccessibleContext (see {@link Accessible}) and then calling the {@link AccessibleContext#getAccessibleEditableText} method of AccessibleContext. If the return value is not null, the object supports this interface.

see
Accessible
see
Accessible#getAccessibleContext
see
AccessibleContext
see
AccessibleContext#getAccessibleText
see
AccessibleContext#getAccessibleEditableText
version
1.6 @(#)AccessibleEditableText.java 1.6
author
Lynn Monsanto
since
1.4

Fields Summary
Constructors Summary
Methods Summary
public voidcut(int startIndex, int endIndex)
Cuts the text between two indices into the system clipboard.

param
startIndex the starting index in the text
param
endIndex the ending index in the text

public voiddelete(int startIndex, int endIndex)
Deletes the text between two indices

param
startIndex the starting index in the text
param
endIndex the ending index in the text

public java.lang.StringgetTextRange(int startIndex, int endIndex)
Returns the text string between two indices.

param
startIndex the starting index in the text
param
endIndex the ending index in the text
return
the text string between the indices

public voidinsertTextAtIndex(int index, java.lang.String s)
Inserts the specified string at the given index/

param
index the index in the text where the string will be inserted
param
s the string to insert in the text

public voidpaste(int startIndex)
Pastes the text from the system clipboard into the text starting at the specified index.

param
startIndex the starting index in the text

public voidreplaceText(int startIndex, int endIndex, java.lang.String s)
Replaces the text between two indices with the specified string.

param
startIndex the starting index in the text
param
endIndex the ending index in the text
param
s the string to replace the text between two indices

public voidselectText(int startIndex, int endIndex)
Selects the text between two indices.

param
startIndex the starting index in the text
param
endIndex the ending index in the text

public voidsetAttributes(int startIndex, int endIndex, javax.swing.text.AttributeSet as)
Sets attributes for the text between two indices.

param
startIndex the starting index in the text
param
endIndex the ending index in the text
param
as the attribute set
see
AttributeSet

public voidsetTextContents(java.lang.String s)
Sets the text contents to the specified string.

param
s the string to set the text contents