test/jdk/java/beans/Introspector/Test8039776.java
author phh
Sat, 30 Nov 2019 14:33:05 -0800
changeset 59330 5b96c12f909d
parent 47216 71c04702a3d5
permissions -rw-r--r--
8234541: C1 emits an empty message when it inlines successfully Summary: Use "inline" as the message when successfull Reviewed-by: thartmann, mdoerr Contributed-by: navy.xliu@gmail.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
24177
cbbea768ae65 8039776: Introspector throws NullPointerException for subclasses' mismatched get/setter
malenkov
parents:
diff changeset
     1
/*
cbbea768ae65 8039776: Introspector throws NullPointerException for subclasses' mismatched get/setter
malenkov
parents:
diff changeset
     2
 * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
cbbea768ae65 8039776: Introspector throws NullPointerException for subclasses' mismatched get/setter
malenkov
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
cbbea768ae65 8039776: Introspector throws NullPointerException for subclasses' mismatched get/setter
malenkov
parents:
diff changeset
     4
 *
cbbea768ae65 8039776: Introspector throws NullPointerException for subclasses' mismatched get/setter
malenkov
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
cbbea768ae65 8039776: Introspector throws NullPointerException for subclasses' mismatched get/setter
malenkov
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
cbbea768ae65 8039776: Introspector throws NullPointerException for subclasses' mismatched get/setter
malenkov
parents:
diff changeset
     7
 * published by the Free Software Foundation.
cbbea768ae65 8039776: Introspector throws NullPointerException for subclasses' mismatched get/setter
malenkov
parents:
diff changeset
     8
 *
cbbea768ae65 8039776: Introspector throws NullPointerException for subclasses' mismatched get/setter
malenkov
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
cbbea768ae65 8039776: Introspector throws NullPointerException for subclasses' mismatched get/setter
malenkov
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
cbbea768ae65 8039776: Introspector throws NullPointerException for subclasses' mismatched get/setter
malenkov
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
cbbea768ae65 8039776: Introspector throws NullPointerException for subclasses' mismatched get/setter
malenkov
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
cbbea768ae65 8039776: Introspector throws NullPointerException for subclasses' mismatched get/setter
malenkov
parents:
diff changeset
    13
 * accompanied this code).
cbbea768ae65 8039776: Introspector throws NullPointerException for subclasses' mismatched get/setter
malenkov
parents:
diff changeset
    14
 *
cbbea768ae65 8039776: Introspector throws NullPointerException for subclasses' mismatched get/setter
malenkov
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
cbbea768ae65 8039776: Introspector throws NullPointerException for subclasses' mismatched get/setter
malenkov
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
cbbea768ae65 8039776: Introspector throws NullPointerException for subclasses' mismatched get/setter
malenkov
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
cbbea768ae65 8039776: Introspector throws NullPointerException for subclasses' mismatched get/setter
malenkov
parents:
diff changeset
    18
 *
cbbea768ae65 8039776: Introspector throws NullPointerException for subclasses' mismatched get/setter
malenkov
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
cbbea768ae65 8039776: Introspector throws NullPointerException for subclasses' mismatched get/setter
malenkov
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
cbbea768ae65 8039776: Introspector throws NullPointerException for subclasses' mismatched get/setter
malenkov
parents:
diff changeset
    21
 * questions.
cbbea768ae65 8039776: Introspector throws NullPointerException for subclasses' mismatched get/setter
malenkov
parents:
diff changeset
    22
 */
cbbea768ae65 8039776: Introspector throws NullPointerException for subclasses' mismatched get/setter
malenkov
parents:
diff changeset
    23
cbbea768ae65 8039776: Introspector throws NullPointerException for subclasses' mismatched get/setter
malenkov
parents:
diff changeset
    24
import java.util.Set;
cbbea768ae65 8039776: Introspector throws NullPointerException for subclasses' mismatched get/setter
malenkov
parents:
diff changeset
    25
import java.util.SortedSet;
cbbea768ae65 8039776: Introspector throws NullPointerException for subclasses' mismatched get/setter
malenkov
parents:
diff changeset
    26
cbbea768ae65 8039776: Introspector throws NullPointerException for subclasses' mismatched get/setter
malenkov
parents:
diff changeset
    27
import static java.beans.Introspector.getBeanInfo;
cbbea768ae65 8039776: Introspector throws NullPointerException for subclasses' mismatched get/setter
malenkov
parents:
diff changeset
    28
cbbea768ae65 8039776: Introspector throws NullPointerException for subclasses' mismatched get/setter
malenkov
parents:
diff changeset
    29
/*
cbbea768ae65 8039776: Introspector throws NullPointerException for subclasses' mismatched get/setter
malenkov
parents:
diff changeset
    30
 * @test
cbbea768ae65 8039776: Introspector throws NullPointerException for subclasses' mismatched get/setter
malenkov
parents:
diff changeset
    31
 * @bug 8039776
cbbea768ae65 8039776: Introspector throws NullPointerException for subclasses' mismatched get/setter
malenkov
parents:
diff changeset
    32
 * @summary Tests that Introspector does not throw NPE
cbbea768ae65 8039776: Introspector throws NullPointerException for subclasses' mismatched get/setter
malenkov
parents:
diff changeset
    33
 * @author Sergey Malenkov
cbbea768ae65 8039776: Introspector throws NullPointerException for subclasses' mismatched get/setter
malenkov
parents:
diff changeset
    34
 */
cbbea768ae65 8039776: Introspector throws NullPointerException for subclasses' mismatched get/setter
malenkov
parents:
diff changeset
    35
cbbea768ae65 8039776: Introspector throws NullPointerException for subclasses' mismatched get/setter
malenkov
parents:
diff changeset
    36
public class Test8039776 {
cbbea768ae65 8039776: Introspector throws NullPointerException for subclasses' mismatched get/setter
malenkov
parents:
diff changeset
    37
    public static void main(String[] args) throws Exception {
cbbea768ae65 8039776: Introspector throws NullPointerException for subclasses' mismatched get/setter
malenkov
parents:
diff changeset
    38
        getBeanInfo(Base.class, Object.class);
cbbea768ae65 8039776: Introspector throws NullPointerException for subclasses' mismatched get/setter
malenkov
parents:
diff changeset
    39
        getBeanInfo(Child.class, Base.class);
cbbea768ae65 8039776: Introspector throws NullPointerException for subclasses' mismatched get/setter
malenkov
parents:
diff changeset
    40
        getBeanInfo(Child.class, Object.class);
cbbea768ae65 8039776: Introspector throws NullPointerException for subclasses' mismatched get/setter
malenkov
parents:
diff changeset
    41
    }
cbbea768ae65 8039776: Introspector throws NullPointerException for subclasses' mismatched get/setter
malenkov
parents:
diff changeset
    42
cbbea768ae65 8039776: Introspector throws NullPointerException for subclasses' mismatched get/setter
malenkov
parents:
diff changeset
    43
    public static class Base {
cbbea768ae65 8039776: Introspector throws NullPointerException for subclasses' mismatched get/setter
malenkov
parents:
diff changeset
    44
        private SortedSet<Object> value;
cbbea768ae65 8039776: Introspector throws NullPointerException for subclasses' mismatched get/setter
malenkov
parents:
diff changeset
    45
cbbea768ae65 8039776: Introspector throws NullPointerException for subclasses' mismatched get/setter
malenkov
parents:
diff changeset
    46
        public Set<Object> getValue() {
cbbea768ae65 8039776: Introspector throws NullPointerException for subclasses' mismatched get/setter
malenkov
parents:
diff changeset
    47
            return this.value;
cbbea768ae65 8039776: Introspector throws NullPointerException for subclasses' mismatched get/setter
malenkov
parents:
diff changeset
    48
        }
cbbea768ae65 8039776: Introspector throws NullPointerException for subclasses' mismatched get/setter
malenkov
parents:
diff changeset
    49
cbbea768ae65 8039776: Introspector throws NullPointerException for subclasses' mismatched get/setter
malenkov
parents:
diff changeset
    50
        public void setValue(SortedSet<Object> value) {
cbbea768ae65 8039776: Introspector throws NullPointerException for subclasses' mismatched get/setter
malenkov
parents:
diff changeset
    51
            this.value = value;
cbbea768ae65 8039776: Introspector throws NullPointerException for subclasses' mismatched get/setter
malenkov
parents:
diff changeset
    52
        }
cbbea768ae65 8039776: Introspector throws NullPointerException for subclasses' mismatched get/setter
malenkov
parents:
diff changeset
    53
    }
cbbea768ae65 8039776: Introspector throws NullPointerException for subclasses' mismatched get/setter
malenkov
parents:
diff changeset
    54
cbbea768ae65 8039776: Introspector throws NullPointerException for subclasses' mismatched get/setter
malenkov
parents:
diff changeset
    55
    public static class Child extends Base {
cbbea768ae65 8039776: Introspector throws NullPointerException for subclasses' mismatched get/setter
malenkov
parents:
diff changeset
    56
        public Set<Object> getValue() {
cbbea768ae65 8039776: Introspector throws NullPointerException for subclasses' mismatched get/setter
malenkov
parents:
diff changeset
    57
            return super.getValue();
cbbea768ae65 8039776: Introspector throws NullPointerException for subclasses' mismatched get/setter
malenkov
parents:
diff changeset
    58
        }
cbbea768ae65 8039776: Introspector throws NullPointerException for subclasses' mismatched get/setter
malenkov
parents:
diff changeset
    59
cbbea768ae65 8039776: Introspector throws NullPointerException for subclasses' mismatched get/setter
malenkov
parents:
diff changeset
    60
        public void setValue(SortedSet<Object> items) {
cbbea768ae65 8039776: Introspector throws NullPointerException for subclasses' mismatched get/setter
malenkov
parents:
diff changeset
    61
            super.setValue(items);
cbbea768ae65 8039776: Introspector throws NullPointerException for subclasses' mismatched get/setter
malenkov
parents:
diff changeset
    62
        }
cbbea768ae65 8039776: Introspector throws NullPointerException for subclasses' mismatched get/setter
malenkov
parents:
diff changeset
    63
    }
cbbea768ae65 8039776: Introspector throws NullPointerException for subclasses' mismatched get/setter
malenkov
parents:
diff changeset
    64
}