ContaineeSynthDoc.java revision 3233:b5d08bc0d224
12311Sjkh/*
22311Sjkh * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
32311Sjkh * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
42311Sjkh *
52311Sjkh * This code is free software; you can redistribute it and/or modify it
62311Sjkh * under the terms of the GNU General Public License version 2 only, as
72311Sjkh * published by the Free Software Foundation.
82311Sjkh *
92311Sjkh * This code is distributed in the hope that it will be useful, but WITHOUT
102311Sjkh * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
112311Sjkh * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
122311Sjkh * version 2 for more details (a copy is included in the LICENSE file that
132311Sjkh * accompanied this code).
142311Sjkh *
152311Sjkh * You should have received a copy of the GNU General Public License version
162311Sjkh * 2 along with this work; if not, write to the Free Software Foundation,
172311Sjkh * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
182311Sjkh *
1929452Scharnier * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2050479Speter * or visit www.oracle.com if you need additional information or have any
212311Sjkh * questions.
222311Sjkh */
232311Sjkh
242311Sjkhpackage pkg1;
252311Sjkh
262311Sjkhimport java.lang.annotation.*;
27199804Sattilio
282311Sjkh/**
292311Sjkh * This annotation is a documented synthesized annotation contained by ContainerSynthNotDoc.
302311Sjkh * It will be used to annotate Class C and methods in the class using a synthesized form.
312311Sjkh *
322311Sjkh * @author Bhavesh Patel
332311Sjkh */
342311Sjkh@Documented
352311Sjkh@Repeatable(ContainerSynthNotDoc.class)
36173412Skevlopublic @interface ContaineeSynthDoc {
37173412Skevlo}
38242101Ssobomax