Merge from mainline (gomp-merge-2005-02-26).
[official-gcc.git] / libjava / javax / accessibility / AccessibleEditableText.java
blobae1ef23f8cc0d987c61394443f6dfe9c2f47f33c
1 /* AccessibleEditableText.java -- aids in accessibly for editable text
2 Copyright (C) 2002, 2005 Free Software Foundation, Inc.
4 This file is part of GNU Classpath.
6 GNU Classpath is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
11 GNU Classpath is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Classpath; see the file COPYING. If not, write to the
18 Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
19 02111-1307 USA.
21 Linking this library statically or dynamically with other modules is
22 making a combined work based on this library. Thus, the terms and
23 conditions of the GNU General Public License cover the whole
24 combination.
26 As a special exception, the copyright holders of this library give you
27 permission to link this library with independent modules to produce an
28 executable, regardless of the license terms of these independent
29 modules, and to copy and distribute the resulting executable under
30 terms of your choice, provided that you also meet, for each linked
31 independent module, the terms and conditions of the license of that
32 module. An independent module is a module which is not derived from
33 or based on this library. If you modify this library, you may extend
34 this exception to your version of the library, but you are not
35 obligated to do so. If you do not wish to do so, delete this
36 exception statement from your version. */
38 package javax.accessibility;
40 import javax.swing.text.AttributeSet;
42 /**
43 * Objects which present editable textual information on the display should
44 * implement this interface. Accessibility software can use the
45 * implementations of this interface to change the content, attributes,
46 * and spacial location of the text.
48 * <p>The <code>AccessibleContext.getAccessibleEditableText()</code> method
49 * should return <code>null</code> if an object does not implement this
50 * interface.
52 * @author Eric Blake (ebb9@email.byu.edu)
53 * @see Accessible
54 * @see AccessibleContext
55 * @see AccessibleContext#getAccessibleText()
56 * @see AccessibleContext#getAccessibleEditableText()
57 * @since 1.2
58 * @status updated to 1.4, except for javax.swing support
60 public interface AccessibleEditableText extends AccessibleText
62 /**
63 * Set the text contents to the given string.
65 * @param s the new text
67 // XXX What happens if s is null?
68 void setTextContents(String s);
70 /**
71 * Inserts the given string at the specified location.
73 * @param index the index for insertion
74 * @param s the new text
76 // XXX What happens if index is out of bounds, or s is null?
77 void insertTextAtIndex(int index, String s);
79 /**
80 * Return the text between two points.
82 * @param start the start position, inclusive
83 * @param end the end position, exclusive
85 // XXX What happens if indices are out of bounds?
86 String getTextRange(int start, int end);
88 /**
89 * Delete the text between two points.
91 * @param start the start position, inclusive
92 * @param end the end position, exclusive
94 // XXX What happens if indices are out of bounds?
95 void delete(int start, int end);
97 /**
98 * Cut the text between two points to the system clipboard.
100 * @param start the start position, inclusive
101 * @param end the end position, exclusive
103 // XXX What happens if indices are out of bounds?
104 void cut(int start, int end);
107 * Paste the text from the system clipboard at the given index.
109 * @param start the start position
111 // XXX What happens if start is out of bounds?
112 void paste(int start);
115 * Replace the text between two points with the given string.
117 * @param start the start position, inclusive
118 * @param end the end position, exclusive
119 * @param s the string to paste
121 // XXX What happens if indices are out of bounds, or s is null?
122 void replaceText(int start, int end, String s);
125 * Select the text between two points.
127 * @param start the start position, inclusive
128 * @param end the end position, exclusive
130 // XXX What happens if indices are out of bounds?
131 void selectText(int start, int stop);
134 * Set the attributes of text between two points.
136 * @param start the start position, inclusive
137 * @param end the end position, exclusive
138 * @param s the new attribute set for the range
140 // XXX What happens if indices are out of bounds, or s is null?
141 void setAttributes(int start, int end, AttributeSet s);
142 } // interface AccessibleEditableText