ContainerRegNotDoc.java revision 3233:b5d08bc0d224
1221828Sgrehan/*
2221828Sgrehan * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
3221828Sgrehan * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4221828Sgrehan *
5221828Sgrehan * This code is free software; you can redistribute it and/or modify it
6221828Sgrehan * under the terms of the GNU General Public License version 2 only, as
7221828Sgrehan * published by the Free Software Foundation.
8221828Sgrehan *
9221828Sgrehan * This code is distributed in the hope that it will be useful, but WITHOUT
10221828Sgrehan * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11221828Sgrehan * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12221828Sgrehan * version 2 for more details (a copy is included in the LICENSE file that
13221828Sgrehan * accompanied this code).
14221828Sgrehan *
15221828Sgrehan * You should have received a copy of the GNU General Public License version
16221828Sgrehan * 2 along with this work; if not, write to the Free Software Foundation,
17221828Sgrehan * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18221828Sgrehan *
19221828Sgrehan * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20221828Sgrehan * or visit www.oracle.com if you need additional information or have any
21221828Sgrehan * questions.
22221828Sgrehan */
23221828Sgrehan
24221828Sgrehanpackage pkg;
25221828Sgrehan
26245678Sneelimport java.lang.annotation.*;
27221828Sgrehan
28221828Sgrehan/**
29221828Sgrehan * This annotation is a non-documented annotation container for RegContaineeDoc.
30221828Sgrehan * It will be used to annotate Class C using a non-synthesized form.
31221828Sgrehan *
32221828Sgrehan * @author Bhavesh Patel
33221828Sgrehan */
34221828Sgrehanpublic @interface ContainerRegNotDoc {
35221828Sgrehan
36221828Sgrehan    RegContaineeDoc[] value();
37262506Sneel}
38221828Sgrehan