-
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
The TextComponent.AccessibleAWTTextComponent.getSelectedText() returns empty
string instead of null, when there is no selection.
The javadoc says:"
public String getSelectedText()
Returns the portion of the text that is selected.
Specified by:
getSelectedText in interface AccessibleText
Returns:
the text, null if no selection
"
See example.
------------- example --------------
import java.awt.*;
import javax.accessibility.*;
public class Test {
public static void main(String argv[]) {
TextField o=new TextField("Test1");
AccessibleText c = o.getAccessibleContext().getAccessibleText();
if (c.getSelectedText()!=null) {
System.out.println("Failed. Method returns:\""
+c.getSelectedText()+"\"");
} else {
System.out.println("Passed");
}
}
}
------------- JDK1.3L output ---------------
Warning: JIT compiler "sunwjit" not found. Will use interpreter.
Failed. Method returns:""
======================================================================