jjg@488: /* ohair@554: * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved. jjg@488: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. jjg@488: * jjg@488: * This code is free software; you can redistribute it and/or modify it jjg@488: * under the terms of the GNU General Public License version 2 only, as jjg@488: * published by the Free Software Foundation. jjg@488: * jjg@488: * This code is distributed in the hope that it will be useful, but WITHOUT jjg@488: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or jjg@488: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License jjg@488: * version 2 for more details (a copy is included in the LICENSE file that jjg@488: * accompanied this code). jjg@488: * jjg@488: * You should have received a copy of the GNU General Public License version jjg@488: * 2 along with this work; if not, write to the Free Software Foundation, jjg@488: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. jjg@488: * ohair@554: * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA ohair@554: * or visit www.oracle.com if you need additional information or have any ohair@554: * questions. jjg@488: */ jjg@488: jjg@488: import java.lang.annotation.*; jjg@488: import static java.lang.annotation.ElementType.*; jjg@488: jjg@488: /** jjg@488: * Annotation used by TestProcessor to indicate the expected type jjg@488: * of the declaration to which the annotation is attached. jjg@488: * These annotations are expected to be found in the modifiers jjg@488: * field on ClassDef, MethodDef and VarDef nodes. jjg@488: */ jjg@488: @Target({FIELD, LOCAL_VARIABLE, METHOD, PACKAGE, PARAMETER, TYPE}) jjg@488: @interface DA { jjg@488: String value(); jjg@488: } jjg@488: