-
Bug
-
Resolution: Fixed
-
P2
-
7
-
b97
-
generic, x86
-
generic, windows_xp
-
Verified
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package javaapplication1;
import javax.swing.JDialog;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
import javax.swing.JTextArea;
/**
*
* @author jirka
*/
public class Main {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
JPanel p = new JPanel();
JTextArea ta = new JTextArea("Settings created by a previous version of the IDE were found on your system at /home/jirka/. Do you want to import them?");
ta.setLineWrap(true);
JOptionPane op = new JOptionPane (
ta,
JOptionPane.QUESTION_MESSAGE,
JOptionPane.YES_NO_OPTION
);
JDialog d = op.createDialog(null, "Confirm Import Settings");
d.setVisible (true);
System.exit(0);
}
}
Filed alsa as NetBeans P2 issue: https://netbeans.org/bugzilla/show_bug.cgi?id=179525
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package javaapplication1;
import javax.swing.JDialog;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
import javax.swing.JTextArea;
/**
*
* @author jirka
*/
public class Main {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
JPanel p = new JPanel();
JTextArea ta = new JTextArea("Settings created by a previous version of the IDE were found on your system at /home/jirka/. Do you want to import them?");
ta.setLineWrap(true);
JOptionPane op = new JOptionPane (
ta,
JOptionPane.QUESTION_MESSAGE,
JOptionPane.YES_NO_OPTION
);
JDialog d = op.createDialog(null, "Confirm Import Settings");
d.setVisible (true);
System.exit(0);
}
}
Filed alsa as NetBeans P2 issue: https://netbeans.org/bugzilla/show_bug.cgi?id=179525
- duplicates
-
JDK-6622353 Size of Java control panel windows are too large.
-
- Closed
-
-
JDK-6849882 Swing Components all displayed too larg in deployment UI
-
- Closed
-
-
JDK-6940863 Textarea within scrollpane shows vertical scrollbar
-
- Closed
-
-
JDK-6943312 Javacpl "About" window is too large
-
- Closed
-
- relates to
-
JDK-6593649 Word wrap broken for JTextArea
-
- Resolved
-