3002N/A/*
4785N/A * Copyright (c) 2006, 2007, Oracle and/or its affiliates. All rights reserved.
3002N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
3002N/A *
3002N/A * This code is free software; you can redistribute it and/or modify it
3002N/A * under the terms of the GNU General Public License version 2 only, as
3002N/A * published by the Free Software Foundation.
3002N/A *
3002N/A * This code is distributed in the hope that it will be useful, but WITHOUT
3002N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
3002N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
3002N/A * version 2 for more details (a copy is included in the LICENSE file that
3002N/A * accompanied this code).
3002N/A *
3002N/A * You should have received a copy of the GNU General Public License version
3002N/A * 2 along with this work; if not, write to the Free Software Foundation,
3002N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
3002N/A *
3002N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
3002N/A * or visit www.oracle.com if you need additional information or have any
3002N/A * questions.
3002N/A */
3002N/A
3002N/A/**
3002N/A * Class to hold annotations for ElementsAnnotatedWithTest.
3002N/A */
3002N/A
3002N/A@AnnotatedElementInfo(annotationName="java.lang.SuppressWarnings",
3002N/A expectedSize=4,
3002N/A names={"foo",
3002N/A "bar",
3002N/A "<init>"})
3002N/Apublic class BuriedAnnotations {
3002N/A @SuppressWarnings("")
3002N/A private BuriedAnnotations() {}
3002N/A
3002N/A class Nested {
3002N/A @SuppressWarnings("")
3002N/A private Nested() {}
3002N/A
3002N/A @SuppressWarnings("")
3002N/A private void foo() {return;};
3002N/A
3002N/A @SuppressWarnings("")
3002N/A private void bar() {return;};
4785N/A }
3002N/A}
3002N/A