232N/A/*
553N/A * Copyright (c) 2009, Oracle and/or its affiliates. All rights reserved.
232N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
232N/A *
232N/A * This code is free software; you can redistribute it and/or modify it
232N/A * under the terms of the GNU General Public License version 2 only, as
553N/A * published by the Free Software Foundation. Oracle designates this
232N/A * particular file as subject to the "Classpath" exception as provided
553N/A * by Oracle in the LICENSE file that accompanied this code.
232N/A *
232N/A * This code is distributed in the hope that it will be useful, but WITHOUT
232N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
232N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
232N/A * version 2 for more details (a copy is included in the LICENSE file that
232N/A * accompanied this code).
232N/A *
232N/A * You should have received a copy of the GNU General Public License version
232N/A * 2 along with this work; if not, write to the Free Software Foundation,
232N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
232N/A *
553N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
553N/A * or visit www.oracle.com if you need additional information or have any
553N/A * questions.
232N/A */
232N/A
232N/Apackage pkg1;
232N/A
232N/Aimport java.lang.annotation.*;
232N/A
232N/A/*
232N/A * The @Inherited annotation has no effect when applied to an interface.
232N/A */
232N/A@Documented
232N/A@Retention(RetentionPolicy.RUNTIME)
232N/A@Target(ElementType.TYPE)
232N/A@Inherited
232N/Apublic @interface C4 {
232N/A boolean value() default true;
232N/A}