ContainerSynthNotDoc.java revision 3233:b5d08bc0d224
13229Spst/*
23229Spst * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
33229Spst * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
43229Spst *
53229Spst * This code is free software; you can redistribute it and/or modify it
63229Spst * under the terms of the GNU General Public License version 2 only, as
73229Spst * published by the Free Software Foundation.
83229Spst *
918471Swosch * This code is distributed in the hope that it will be useful, but WITHOUT
1050476Speter * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
113229Spst * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
123229Spst * version 2 for more details (a copy is included in the LICENSE file that
133229Spst * accompanied this code).
143229Spst *
153229Spst * You should have received a copy of the GNU General Public License version
1613575Spst * 2 along with this work; if not, write to the Free Software Foundation,
1713575Spst * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
1813575Spst *
1913575Spst * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
203229Spst * or visit www.oracle.com if you need additional information or have any
2169793Sobrien * questions.
2284125Siedowse */
233229Spst
243229Spstpackage pkg1;
2513575Spst
263229Spstimport java.lang.annotation.*;
273229Spst
283229Spst/**
293229Spst * This annotation is a non-documented synthesized annotation container for ContaineeSynthDoc.
303229Spst * It will be used to annotate Class C and methods in the class using a synthesized form.
313229Spst *
323229Spst * @author Bhavesh Patel
333229Spst */
343229Spstpublic @interface ContainerSynthNotDoc {
353229Spst
363229Spst    ContaineeSynthDoc[] value();
373229Spst}
383229Spst