NonSynthDocContainer.java revision 3233:b5d08bc0d224
1130561Sobrien/*
2130561Sobrien * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
3218822Sdim * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4130561Sobrien *
5130561Sobrien * This code is free software; you can redistribute it and/or modify it
6130561Sobrien * under the terms of the GNU General Public License version 2 only, as
7130561Sobrien * published by the Free Software Foundation.
8130561Sobrien *
9130561Sobrien * This code is distributed in the hope that it will be useful, but WITHOUT
10130561Sobrien * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11130561Sobrien * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12130561Sobrien * version 2 for more details (a copy is included in the LICENSE file that
13130561Sobrien * accompanied this code).
14130561Sobrien *
15130561Sobrien * You should have received a copy of the GNU General Public License version
16130561Sobrien * 2 along with this work; if not, write to the Free Software Foundation,
17130561Sobrien * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18130561Sobrien *
19218822Sdim * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20218822Sdim * or visit www.oracle.com if you need additional information or have any
21130561Sobrien * questions.
22130561Sobrien */
23130561Sobrien
24130561Sobrienpackage pkg;
25130561Sobrien
26130561Sobrienimport java.lang.annotation.*;
27130561Sobrien
28130561Sobrien/**
29130561Sobrien * This annotation is a documented annotation.
30130561Sobrien * It will be used to annotate methods in class D.
31130561Sobrien *
32130561Sobrien * @author Bhavesh Patel
33130561Sobrien */
34130561Sobrien@Documented
35130561Sobrienpublic @interface NonSynthDocContainer {
36130561Sobrien
37130561Sobrien    RegArryDoc[] value();
38130561Sobrien}
39130561Sobrien