-
Type:
Bug
-
Status: Closed
-
Priority:
P4
-
Resolution: Fixed
-
Affects Version/s: 1.3.0, 5.0
-
Fix Version/s: 5.0
-
Component/s: client-libs
-
Subcomponent:
-
Resolved In Build:b26
-
CPU:generic, sparc
-
OS:generic, solaris_2.5.1
-
Verification:Verified
Name: aaC67449 Date: 07/23/99
TextComponent.AccessibleAWTTextComponent.getBeforeIndex(int part, int index)
works incorrectly, when 'part' parameter is AccessibleText.WORD.
It returns a space (" ") instead of the correct word.
See example.
------------- example --------------
import java.awt.*;
import javax.accessibility.*;
public class Test {
public static void main(String argv[]) {
TextField o=new TextField("Test1 test2.");
AccessibleText c = o.getAccessibleContext().getAccessibleText();
if (!c.getBeforeIndex(AccessibleText.WORD,7).equals("Test1")) {
System.out.println("Failed. Method returns:\""
+c.getBeforeIndex(AccessibleText.WORD,7)+"\"");
} else {
System.out.println("Passed");
}
}
}
------------- JDK1.3L output ---------------
Warning: JIT compiler "sunwjit" not found. Will use interpreter.
Failed. Method returns:" "
======================================================================
- relates to
-
JDK-4170173 JTextComponent.AccessibleJTextComponent.getAfterIndex(...) works incorrectly.
-
- Closed
-