C4.java revision 232
232N/A/*
232N/A * Copyright 2009 Sun Microsystems, Inc. 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
232N/A * published by the Free Software Foundation. Sun designates this
232N/A * particular file as subject to the "Classpath" exception as provided
232N/A * by Sun 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 *
232N/A * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
232N/A * CA 95054 USA or visit www.sun.com if you need additional information or
232N/A * have any 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}