AccessibleEditableText.java, [...]: New versions from Classpath.

* javax/accessibility/AccessibleEditableText.java,
	javax/accessibility/AccessibleHyperlink.java: New versions from
	Classpath.

From-SVN: r63629
This commit is contained in:
Tom Tromey 2003-03-01 22:26:29 +00:00 committed by Tom Tromey
parent d3c582c300
commit 1a8fc8a76c
3 changed files with 8 additions and 4 deletions

View file

@ -92,7 +92,7 @@ public interface AccessibleEditableText extends AccessibleText
* @param end the end position, exclusive
*/
// XXX What happens if indices are out of bounds?
String delete(int start, int end);
void delete(int start, int end);
/**
* Cut the text between two points to the system clipboard.
@ -101,7 +101,7 @@ public interface AccessibleEditableText extends AccessibleText
* @param end the end position, exclusive
*/
// XXX What happens if indices are out of bounds?
String cut(int start, int end);
void cut(int start, int end);
/**
* Paste the text from the system clipboard at the given index.