jjg@1521: /* darcy@1534: * Copyright (c) 2009, Oracle and/or its affiliates. All rights reserved. jjg@1521: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. jjg@1521: * jjg@1521: * This code is free software; you can redistribute it and/or modify it jjg@1521: * under the terms of the GNU General Public License version 2 only, as jjg@1521: * published by the Free Software Foundation. jjg@1521: * jjg@1521: * This code is distributed in the hope that it will be useful, but WITHOUT jjg@1521: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or jjg@1521: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License jjg@1521: * version 2 for more details (a copy is included in the LICENSE file that jjg@1521: * accompanied this code). jjg@1521: * jjg@1521: * You should have received a copy of the GNU General Public License version jjg@1521: * 2 along with this work; if not, write to the Free Software Foundation, jjg@1521: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. jjg@1521: * jjg@1521: * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA jjg@1521: * or visit www.oracle.com if you need additional information or have any jjg@1521: * questions. jjg@1521: */ jjg@1521: jjg@1521: import static com.sun.tools.classfile.TypeAnnotation.TargetType.*; jjg@1521: jjg@1521: /* jjg@1521: * @test jjg@1521: * @summary Test population of reference info for class extends clauses jjg@1521: * @compile -g Driver.java ReferenceInfoUtil.java ClassExtends.java jjg@1521: * @run main Driver ClassExtends jjg@1521: */ jjg@1521: public class ClassExtends { jjg@1521: jjg@1521: @TADescriptions({ jjg@1521: @TADescription(annotation = "TA", type = CLASS_EXTENDS, typeIndex = -1), jjg@1521: @TADescription(annotation = "TB", type = CLASS_EXTENDS, typeIndex = 1) jjg@1521: }) jjg@1521: public String regularClass() { jjg@1521: return "class Test extends @TA Object implements Cloneable, @TB Runnable {" jjg@1521: + " public void run() { } }"; jjg@1521: } jjg@1521: jjg@1521: @TADescriptions({ jjg@1521: @TADescription(annotation = "TA", type = CLASS_EXTENDS, typeIndex = -1, jjg@1521: genericLocation = { 3, 0 }), jjg@1521: @TADescription(annotation = "TB", type = CLASS_EXTENDS, typeIndex = 1, jjg@1521: genericLocation = { 3, 1 }) jjg@1521: }) jjg@1521: public String regularClassExtendsParametrized() { jjg@1521: return "class Test extends HashMap<@TA String, String> implements Cloneable, Map{ } "; jjg@1521: } jjg@1521: jjg@1521: @TADescriptions({ jjg@1521: @TADescription(annotation = "TA", type = CLASS_EXTENDS, typeIndex = -1), jjg@1521: @TADescription(annotation = "TB", type = CLASS_EXTENDS, typeIndex = 1) jjg@1521: }) jjg@1521: public String abstractClass() { jjg@1521: return "abstract class Test extends @TA Date implements Cloneable, @TB Runnable {" jjg@1521: + " public void run() { } }"; jjg@1521: } jjg@1521: jjg@1521: @TADescriptions({ jjg@1521: @TADescription(annotation = "TA", type = CLASS_EXTENDS, typeIndex = -1, jjg@1521: genericLocation = { 3, 0 }), jjg@1521: @TADescription(annotation = "TB", type = CLASS_EXTENDS, typeIndex = 1, jjg@1521: genericLocation = { 3, 1 }) jjg@1521: }) jjg@1521: public String abstractClassExtendsParametrized() { jjg@1521: return "abstract class Test extends HashMap<@TA String, String> implements Cloneable, Map{ } "; jjg@1521: } jjg@1521: jjg@1521: @TADescription(annotation = "TB", type = CLASS_EXTENDS, typeIndex = 1) jjg@1521: public String regularInterface() { jjg@1521: return "interface Test extends Cloneable, @TB Runnable { }"; jjg@1521: } jjg@1521: jjg@1521: @TADescription(annotation = "TB", type = CLASS_EXTENDS, typeIndex = 1, jjg@1521: genericLocation = { 3, 1 }) jjg@1521: public String regularInterfaceExtendsParametrized() { jjg@1521: return "interface Test extends Cloneable, Map{ } "; jjg@1521: } jjg@1521: jjg@1521: @TADescription(annotation = "TB", type = CLASS_EXTENDS, typeIndex = 1) jjg@1521: public String regularEnum() { jjg@1521: return "enum Test implements Cloneable, @TB Runnable { TEST; public void run() { } }"; jjg@1521: } jjg@1521: jjg@1521: @TADescription(annotation = "TB", type = CLASS_EXTENDS, typeIndex = 1, jjg@1521: genericLocation = { 3, 0 }) jjg@1521: public String regularEnumExtendsParametrized() { jjg@1521: return jjg@1521: "enum Test implements Cloneable, Comparator<@TB String> { TEST; " jjg@1521: + "public int compare(String a, String b) { return 0; }}"; jjg@1521: } jjg@1521: jjg@1521: }