/* * Copyright 2009 Sun Microsystems, Inc. All Rights Reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, * CA 95054 USA or visit www.sun.com if you need additional information or * have any questions. */ import static com.sun.tools.classfile.ExtendedAnnotation.TargetType.*; /* * @test * @summary Test population of reference info for new object creations * @compile -g Driver.java ReferenceInfoUtil.java NewObjects.java * @run main Driver NewObjects */ public class NewObjects { @TADescription(annotation = "TA", type = NEW, offset = ReferenceInfoUtil.IGNORE_VALUE) public String returnObject() { return "Object returnObject() { return new @TA String(); }"; } @TADescriptions({ @TADescription(annotation = "TA", type = NEW, offset = ReferenceInfoUtil.IGNORE_VALUE), @TADescription(annotation = "TB", type = NEW_GENERIC_OR_ARRAY, genericLocation = { 0 }, offset = ReferenceInfoUtil.IGNORE_VALUE) }) public String returnObjectGeneric() { return "Object returnObjectGeneric() { return new @TA ArrayList<@TB String>(); }"; } @TADescription(annotation = "TA", type = NEW, offset = ReferenceInfoUtil.IGNORE_VALUE) public String initObject() { return "void initObject() { Object a = new @TA String(); }"; } @TADescriptions({ @TADescription(annotation = "TA", type = NEW, offset = ReferenceInfoUtil.IGNORE_VALUE), @TADescription(annotation = "TB", type = NEW_GENERIC_OR_ARRAY, genericLocation = { 0 }, offset = ReferenceInfoUtil.IGNORE_VALUE), @TADescription(annotation = "TC", type = NEW_GENERIC_OR_ARRAY, genericLocation = { 1 }, offset = ReferenceInfoUtil.IGNORE_VALUE) }) public String initObjectGeneric() { return "void initObjectGeneric() { Object a = new @TA HashMap<@TB String, @TC String>(); }"; } @TADescription(annotation = "TA", type = NEW, offset = ReferenceInfoUtil.IGNORE_VALUE) public String eqtestObject() { return "void eqtestObject() { if (null == new @TA String()); }"; } @TADescriptions({ @TADescription(annotation = "TA", type = NEW, offset = ReferenceInfoUtil.IGNORE_VALUE), @TADescription(annotation = "TB", type = NEW_GENERIC_OR_ARRAY, genericLocation = { 0 }, offset = ReferenceInfoUtil.IGNORE_VALUE) }) public String eqtestObjectGeneric() { return "void eqtestObjectGeneric() { if (null == new @TA ArrayList<@TB String >()); }"; } }