bpatel@1477: /* ksrini@2227: * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved. bpatel@1477: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. bpatel@1477: * bpatel@1477: * This code is free software; you can redistribute it and/or modify it bpatel@1477: * under the terms of the GNU General Public License version 2 only, as bpatel@1477: * published by the Free Software Foundation. bpatel@1477: * bpatel@1477: * This code is distributed in the hope that it will be useful, but WITHOUT bpatel@1477: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or bpatel@1477: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License bpatel@1477: * version 2 for more details (a copy is included in the LICENSE file that bpatel@1477: * accompanied this code). bpatel@1477: * bpatel@1477: * You should have received a copy of the GNU General Public License version bpatel@1477: * 2 along with this work; if not, write to the Free Software Foundation, bpatel@1477: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. bpatel@1477: * bpatel@1477: * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA bpatel@1477: * or visit www.oracle.com if you need additional information or have any bpatel@1477: * questions. bpatel@1477: */ bpatel@1477: bpatel@1477: package pkg1; bpatel@1477: bpatel@1477: import java.lang.annotation.*; bpatel@1477: bpatel@1477: /** bpatel@1477: * This annotation is a documented annotation container for ContaineeNotDoc. bpatel@1477: * It will be used to annotate Class C using a non-synthesized form. bpatel@1477: * bpatel@1477: * @author Bhavesh Patel bpatel@1477: */ bpatel@1477: @Documented bpatel@1477: public @interface ContainerValDoc { bpatel@1477: bpatel@1477: ContaineeNotDoc[] value(); bpatel@1477: bpatel@1477: int x(); bpatel@1477: }