-
Bug
-
Resolution: Fixed
-
P2
-
1.1.1, 1.2.0
-
swing0.7
-
generic, sparc
-
generic, solaris_2.5, solaris_2.5.1
-
Verified
Using the -
public JInternalFrame(String title,
boolean resizable,
boolean closable,
boolean maximizable,
boolean iconifiable)
constructor with all trues does not make the internal frame iconifiable.
But using the default constructor and then setting the frame attributes
works correctly. It seems to be order sensitive also. The order from
swingset demo seems to work. Here is the code snippet from
swing0.5.1 examples/SwingSet/InternalFramePanel.java -
JInternalFrame w;
int layer;
w = new JInternalFrame();
w.setClosable(closeBox.isSelected());
w.setMaximizable(maxBox.isSelected());
w.setIconifiable(iconBox.isSelected());
w.setTitle(titleField.getText());
w.setResizable(resizeBox.isSelected());
public JInternalFrame(String title,
boolean resizable,
boolean closable,
boolean maximizable,
boolean iconifiable)
constructor with all trues does not make the internal frame iconifiable.
But using the default constructor and then setting the frame attributes
works correctly. It seems to be order sensitive also. The order from
swingset demo seems to work. Here is the code snippet from
swing0.5.1 examples/SwingSet/InternalFramePanel.java -
JInternalFrame w;
int layer;
w = new JInternalFrame();
w.setClosable(closeBox.isSelected());
w.setMaximizable(maxBox.isSelected());
w.setIconifiable(iconBox.isSelected());
w.setTitle(titleField.getText());
w.setResizable(resizeBox.isSelected());
- duplicates
-
JDK-4097720 Constructor JInternalFrame(...) doesn't set iconifiable variable.
-
- Closed
-
-
JDK-4089916 JInternalFrame created with inconifiable value set to true is not iconifiable
-
- Closed
-