test/jdk/java/io/Serializable/defaulted/GetFieldRead.java
changeset 58565 baa5969ecf34
parent 47216 71c04702a3d5
equal deleted inserted replaced
58564:218a1a642c6f 58565:baa5969ecf34
     1 /*
     1 /*
     2  * Copyright (c) 1999, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1999, 2019, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     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
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     7  * published by the Free Software Foundation.
    28  *
    28  *
    29  */
    29  */
    30 
    30 
    31 import java.io.*;
    31 import java.io.*;
    32 class TestClass implements Serializable {
    32 class TestClass implements Serializable {
    33     public static final Integer DEFAULT_OBJECT_I = new Integer(99);
    33     public static final Integer DEFAULT_OBJECT_I = 99;
    34     public static final Foo DEFAULT_OBJECT_F = new Foo();
    34     public static final Foo DEFAULT_OBJECT_F = new Foo();
    35     private static final long serialVersionUID=5748652654655279289L;
    35     private static final long serialVersionUID = 5748652654655279289L;
    36 
    36 
    37     // Fields to be serialized.
    37     // Fields to be serialized.
    38     private static final ObjectStreamField[] serialPersistentFields = {
    38     private static final ObjectStreamField[] serialPersistentFields = {
    39         new ObjectStreamField("objectI", Integer.class),
    39         new ObjectStreamField("objectI", Integer.class),
    40         new ObjectStreamField("primitiveI", Integer.TYPE),
    40         new ObjectStreamField("primitiveI", Integer.TYPE),