4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation.
8 *
9 * This code is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12 * version 2 for more details (a copy is included in the LICENSE file that
13 * accompanied this code).
14 *
15 * You should have received a copy of the GNU General Public License version
16 * 2 along with this work; if not, write to the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20 * or visit www.oracle.com if you need additional information or have any
21 * questions.
22 */
23
24 /* @test
25 @bug 7193219
26 @summary JComboBox serialization fails in JDK 1.7
27 @author Anton Litvinov
28 */
29
30 import java.io.*;
31
32 import javax.swing.*;
33 import javax.swing.plaf.metal.*;
34
35 public class bug7193219 {
36 private static byte[] serializeGUI() {
37 // Create and set up the window.
38 JFrame frame = new JFrame("Serialization");
39 JPanel mainPanel = new JPanel();
40
41 /**
42 * If JComboBox is replaced with other component like JLabel
43 * The issue does not happen.
44 */
45 JComboBox status = new JComboBox();
46 status.addItem("123");
47 mainPanel.add(status);
48 frame.getContentPane().add(mainPanel);
|
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation.
8 *
9 * This code is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12 * version 2 for more details (a copy is included in the LICENSE file that
13 * accompanied this code).
14 *
15 * You should have received a copy of the GNU General Public License version
16 * 2 along with this work; if not, write to the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20 * or visit www.oracle.com if you need additional information or have any
21 * questions.
22 */
23
24 /*
25 * @test
26 * @key headful
27 * @bug 7193219
28 * @summary JComboBox serialization fails in JDK 1.7
29 * @author Anton Litvinov
30 */
31
32 import java.io.*;
33
34 import javax.swing.*;
35 import javax.swing.plaf.metal.*;
36
37 public class bug7193219 {
38 private static byte[] serializeGUI() {
39 // Create and set up the window.
40 JFrame frame = new JFrame("Serialization");
41 JPanel mainPanel = new JPanel();
42
43 /**
44 * If JComboBox is replaced with other component like JLabel
45 * The issue does not happen.
46 */
47 JComboBox status = new JComboBox();
48 status.addItem("123");
49 mainPanel.add(status);
50 frame.getContentPane().add(mainPanel);
|