7121409: Two conformance tests for AccessibleText.getCharacterBounds(int i) fail

Reviewed-by: serb
This commit is contained in:
Alexander Scherbatiy 2013-08-09 14:16:24 +04:00
parent 66bb3b1c47
commit ad02c635e3

View File

@ -1185,14 +1185,13 @@ public class JLabel extends JComponent implements SwingConstants, Accessible
} }
/** /**
* Determine the bounding box of the character at the given * Returns the bounding box of the character at the given
* index into the string. The bounds are returned in local * index in the string. The bounds are returned in local
* coordinates. If the index is invalid an empty rectangle is * coordinates. If the index is invalid, <code>null</code> is returned.
* returned.
* *
* @param i the index into the String * @param i the index into the String
* @return the screen coordinates of the character's the bounding box, * @return the screen coordinates of the character's bounding box.
* if index is invalid returns an empty rectangle. * If the index is invalid, <code>null</code> is returned.
* @since 1.3 * @since 1.3
*/ */
public Rectangle getCharacterBounds(int i) { public Rectangle getCharacterBounds(int i) {