-
Bug
-
Resolution: Fixed
-
P4
-
1.3.1_01, 1.4.1, 1.4.1_02, 1.4.2, 5.0
-
tiger
-
generic, x86, sparc
-
solaris_9, windows_2000
java version "1.3.1-beta"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1-beta-b15)
Java HotSpot(TM) Client VM (build 1.3.1beta-b15, mixed mode)
JTextArea returns the incorrect preferred size when line wrapping is used. The following sample program puts a line-wrapped JTextArea in a JDialog. It prints out the preferred size of the JTextArea before and after the dialog's pack() method is called. These 2 dimensions are not the same - its only correct after pack() has been called.
import java.lang.*;
import javax.swing.*;
import javax.swing.text.*;
import java.awt.*;
import java.awt.event.*;
public class JTextAreaWrappingTest {
private String testStr = "This string should be sufficiently long to demonstrate the problem.";
WrapArea wrapArea;
public static void main(String argv[]) {
JTextAreaWrappingTest myTest = new JTextAreaWrappingTest();
}
public JTextAreaWrappingTest () {
JDialog dialog = new JDialog();
WrapArea wrapArea = new WrapArea(testStr);
dialog.getContentPane().setLayout(new FlowLayout());
dialog.getContentPane().add(wrapArea);
System.out.println("pre-pack() prefSize = " + wrapArea.getPreferredSize());
dialog.pack();
// UNCOMMENT THIS LINE AND RE-COMPILE TO DEMONSTRATE THE WORK AROUND
// dialog.pack();
System.out.println("post-pack() prefSize = " + wrapArea.getPreferredSize());
dialog.show();
} // constructor
public class WrapArea extends JTextArea {
public WrapArea(String str) {
super(str);
wrapArea = this;
wrapArea.setColumns(30);
wrapArea.setLineWrap(true);
} // constructor
} // WrapArea
} // JTextAreaWrappingTest
- duplicates
-
JDK-4855671 REGRESSION 1.4: Incorrect layout in JOptionPane when using custom component
-
- Closed
-
- relates to
-
JDK-5037834 Repaint issue if we set html having color setting as text on JRadioButton
-
- Open
-
-
JDK-4990877 REGRESSION: JTextArea.setRows() broken.
-
- Resolved
-
-
JDK-4855860 JTextPane returns too large preferredSize in some specific cases
-
- Resolved
-
-
JDK-4924163 JTextArea with word wrap does not return correct preffered size
-
- Closed
-
-
JDK-4986141 "DeskTop Integration" dialog size is more then what it is needed.
-
- Closed
-
-
JDK-5053608 Should investigate extension to LayoutManagers to support flexible components
-
- Open
-
-
JDK-5007686 EditorPane not resizing properly when font is increased from Zero size
-
- Open
-
-
JDK-5008122 Korean: Java Web Start-add entry, buttons are stuck to the bottom of the page
-
- Resolved
-