6735293: javax.swing.text.NavigationFilter.getNextVisualPositionFrom() not always throws BadLocationException

Reviewed-by: peterz
This commit is contained in:
Pavel Porvatov 2011-01-24 18:04:37 +03:00
parent 52038b7a11
commit 76600dc535
2 changed files with 92 additions and 0 deletions

View File

@ -497,6 +497,10 @@ public abstract class View implements SwingConstants {
public int getNextVisualPositionFrom(int pos, Position.Bias b, Shape a,
int direction, Position.Bias[] biasRet)
throws BadLocationException {
if (pos < -1) {
// -1 is a reserved value, see the code below
throw new BadLocationException("Invalid position", pos);
}
biasRet[0] = Position.Bias.Forward;
switch (direction) {

View File

@ -0,0 +1,88 @@
/*
* Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/*
* @test
* @bug 6735293
* @summary javax.swing.text.NavigationFilter.getNextVisualPositionFrom() not always throws BadLocationException
* @author Pavel Porvatov
*/
import javax.swing.*;
import javax.swing.text.BadLocationException;
import javax.swing.text.NavigationFilter;
import javax.swing.text.Position;
public class bug6735293 {
private static volatile JFormattedTextField jtf;
private static volatile NavigationFilter nf;
private static volatile JFrame jFrame;
public static void main(String[] args) throws Exception {
SwingUtilities.invokeAndWait(new Runnable() {
public void run() {
jtf = new JFormattedTextField();
nf = new NavigationFilter();
jtf.setText("A text message");
jFrame = new JFrame();
jFrame.getContentPane().add(jtf);
jFrame.pack();
jFrame.setVisible(true);
}
});
Thread.sleep(1000);
SwingUtilities.invokeAndWait(new Runnable() {
public void run() {
Position.Bias[] biasRet = {Position.Bias.Forward};
for (int direction : new int[]{
SwingConstants.EAST,
SwingConstants.WEST,
// the following constants still will lead to "BadLocationException: Length must be positive"
SwingConstants.SOUTH,
SwingConstants.NORTH,
}) {
for (int position : new int[]{-100, Integer.MIN_VALUE}) {
for (Position.Bias bias : new Position.Bias[]{Position.Bias.Backward, Position.Bias.Forward}) {
try {
nf.getNextVisualPositionFrom(jtf, position, bias, direction, biasRet);
throw new RuntimeException("BadLocationException was not thrown: position = " +
position + ", bias = " + bias + ", direction = " + direction);
} catch (BadLocationException e) {
// Ok
}
}
}
}
jFrame.dispose();
}
});
}
}