aoqi@0: /* aoqi@0: * Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved. aoqi@0: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. aoqi@0: * aoqi@0: * This code is free software; you can redistribute it and/or modify it aoqi@0: * under the terms of the GNU General Public License version 2 only, as aoqi@0: * published by the Free Software Foundation. aoqi@0: * aoqi@0: * This code is distributed in the hope that it will be useful, but WITHOUT aoqi@0: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or aoqi@0: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License aoqi@0: * version 2 for more details (a copy is included in the LICENSE file that aoqi@0: * accompanied this code). aoqi@0: * aoqi@0: * You should have received a copy of the GNU General Public License version aoqi@0: * 2 along with this work; if not, write to the Free Software Foundation, aoqi@0: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. aoqi@0: * aoqi@0: * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA aoqi@0: * or visit www.oracle.com if you need additional information or have any aoqi@0: * questions. aoqi@0: */ aoqi@0: aoqi@0: @TraceResolve aoqi@0: class ReferenceOverload { aoqi@0: aoqi@0: static class A {} aoqi@0: static class B extends A {} aoqi@0: static class C extends B {} aoqi@0: static class D extends C {} aoqi@0: static class E extends D {} aoqi@0: aoqi@0: @Candidate(applicable=Phase.BASIC, mostSpecific=true) aoqi@0: static void m_A(A a) {} aoqi@0: @Candidate aoqi@0: static void m_A(B a) {} aoqi@0: @Candidate aoqi@0: static void m_A(C a) {} aoqi@0: @Candidate aoqi@0: static void m_A(D a) {} aoqi@0: @Candidate aoqi@0: static void m_A(E a) {} aoqi@0: aoqi@0: @Candidate(applicable=Phase.BASIC, mostSpecific=false) aoqi@0: static void m_B(A b) {} aoqi@0: @Candidate(applicable=Phase.BASIC, mostSpecific=true) aoqi@0: static void m_B(B b) {} aoqi@0: @Candidate aoqi@0: static void m_B(C b) {} aoqi@0: @Candidate aoqi@0: static void m_B(D b) {} aoqi@0: @Candidate aoqi@0: static void m_B(E b) {} aoqi@0: aoqi@0: @Candidate(applicable=Phase.BASIC, mostSpecific=false) aoqi@0: static void m_C(A c) {} aoqi@0: @Candidate(applicable=Phase.BASIC, mostSpecific=false) aoqi@0: static void m_C(B c) {} aoqi@0: @Candidate(applicable=Phase.BASIC, mostSpecific=true) aoqi@0: static void m_C(C c) {} aoqi@0: @Candidate aoqi@0: static void m_C(D c) {} aoqi@0: @Candidate aoqi@0: static void m_C(E c) {} aoqi@0: aoqi@0: @Candidate(applicable=Phase.BASIC, mostSpecific=false) aoqi@0: static void m_D(A d) {} aoqi@0: @Candidate(applicable=Phase.BASIC, mostSpecific=false) aoqi@0: static void m_D(B d) {} aoqi@0: @Candidate(applicable=Phase.BASIC, mostSpecific=false) aoqi@0: static void m_D(C d) {} aoqi@0: @Candidate(applicable=Phase.BASIC, mostSpecific=true) aoqi@0: static void m_D(D d) {} aoqi@0: @Candidate aoqi@0: static void m_D(E d) {} aoqi@0: aoqi@0: @Candidate(applicable=Phase.BASIC, mostSpecific=false) aoqi@0: static void m_E(A e) {} aoqi@0: @Candidate(applicable=Phase.BASIC, mostSpecific=false) aoqi@0: static void m_E(B e) {} aoqi@0: @Candidate(applicable=Phase.BASIC, mostSpecific=false) aoqi@0: static void m_E(C e) {} aoqi@0: @Candidate(applicable=Phase.BASIC, mostSpecific=false) aoqi@0: static void m_E(D e) {} aoqi@0: @Candidate(applicable=Phase.BASIC, mostSpecific=true) aoqi@0: static void m_E(E e) {} aoqi@0: aoqi@0: { aoqi@0: m_A((A)null); aoqi@0: m_B((B)null); aoqi@0: m_C((C)null); aoqi@0: m_D((D)null); aoqi@0: m_E((E)null); aoqi@0: } aoqi@0: }