test/tools/javac/annotations/typeAnnotations/referenceinfos/MultiCatch.java

Tue, 14 May 2013 15:04:06 -0700

author
jjg
date
Tue, 14 May 2013 15:04:06 -0700
changeset 1755
ddb4a2bfcd82
parent 1721
abd153854f16
child 2103
b1b4a6dcc282
permissions
-rw-r--r--

8013852: update reference impl for type-annotations
Reviewed-by: jjg
Contributed-by: wdietl@gmail.com, steve.sides@oracle.com, joel.franck@oracle.com, alex.buckley@oracle.com

jjg@1521 1 /*
darcy@1534 2 * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
jjg@1521 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
jjg@1521 4 *
jjg@1521 5 * This code is free software; you can redistribute it and/or modify it
jjg@1521 6 * under the terms of the GNU General Public License version 2 only, as
jjg@1521 7 * published by the Free Software Foundation.
jjg@1521 8 *
jjg@1521 9 * This code is distributed in the hope that it will be useful, but WITHOUT
jjg@1521 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
jjg@1521 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
jjg@1521 12 * version 2 for more details (a copy is included in the LICENSE file that
jjg@1521 13 * accompanied this code).
jjg@1521 14 *
jjg@1521 15 * You should have received a copy of the GNU General Public License version
jjg@1521 16 * 2 along with this work; if not, write to the Free Software Foundation,
jjg@1521 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
jjg@1521 18 *
jjg@1521 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
jjg@1521 20 * or visit www.oracle.com if you need additional information or have any
jjg@1521 21 * questions.
jjg@1521 22 */
jjg@1521 23
jjg@1521 24 import static com.sun.tools.classfile.TypeAnnotation.TargetType.*;
jjg@1521 25
jjg@1521 26 /*
jjg@1521 27 * @test
jjg@1521 28 * @bug 8006732 8006775
jjg@1521 29 * @summary Test population of reference info for multicatch exception parameters
jjg@1521 30 * @author Werner Dietl
jjg@1521 31 * @compile -g Driver.java ReferenceInfoUtil.java MultiCatch.java
jjg@1521 32 * @run main Driver MultiCatch
jjg@1521 33 */
jjg@1521 34 public class MultiCatch {
jjg@1521 35
jjg@1521 36 @TADescriptions({
jjg@1521 37 @TADescription(annotation = "TA", type = EXCEPTION_PARAMETER, exceptionIndex = 0),
jjg@1521 38 @TADescription(annotation = "TB", type = EXCEPTION_PARAMETER, exceptionIndex = 1)
jjg@1521 39 })
jjg@1521 40 public String multiCatch1() {
jjg@1521 41 return "void multiCatch1() { " +
jjg@1521 42 "try { new Object(); } catch (@TA NullPointerException | @TB IndexOutOfBoundsException e) { e.toString(); } }";
jjg@1521 43 }
jjg@1521 44
jjg@1521 45 @TADescriptions({
jjg@1521 46 @TADescription(annotation = "TA", type = EXCEPTION_PARAMETER, exceptionIndex = 0),
jjg@1521 47 @TADescription(annotation = "TB", type = EXCEPTION_PARAMETER, exceptionIndex = 1),
jjg@1521 48 @TADescription(annotation = "TC", type = EXCEPTION_PARAMETER, exceptionIndex = 2),
jjg@1521 49 })
jjg@1521 50 public String multiCatch2() {
jjg@1521 51 return "void multiCatch2() { " +
jjg@1521 52 "try { new Object(); } catch (@TA NullPointerException | @TB IndexOutOfBoundsException | @TC IllegalArgumentException e) { e.toString(); } }";
jjg@1521 53 }
jjg@1521 54
jjg@1755 55 @TADescriptions({
jjg@1755 56 @TADescription(annotation = "TA", type = EXCEPTION_PARAMETER, exceptionIndex = 1),
jjg@1755 57 @TADescription(annotation = "TB", type = EXCEPTION_PARAMETER, exceptionIndex = 1),
jjg@1755 58 @TADescription(annotation = "TC", type = EXCEPTION_PARAMETER, exceptionIndex = 2),
jjg@1755 59 @TADescription(annotation = "TD", type = EXCEPTION_PARAMETER, exceptionIndex = 2),
jjg@1755 60 @TADescription(annotation = "TE", type = EXCEPTION_PARAMETER, exceptionIndex = 3),
jjg@1755 61 })
jjg@1755 62 public String multiCatch3() {
jjg@1755 63 return "void multiCatch3() { " +
jjg@1755 64 "try { new Object(); } catch (NullPointerException e1) {}" +
jjg@1755 65 "try { new Object(); } catch (@TA @TB NullPointerException | @TC @TD IndexOutOfBoundsException | @TE IllegalArgumentException e2) { e2.toString(); } }";
jjg@1755 66 }
jjg@1521 67 }

mercurial