src/share/jaxws_classes/javax/annotation/Generated.java

changeset 286
f50545b5e2f1
child 368
0989ad8c0860
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/share/jaxws_classes/javax/annotation/Generated.java	Tue Mar 06 16:09:35 2012 -0800
     1.3 @@ -0,0 +1,71 @@
     1.4 +/*
     1.5 + * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
     1.6 + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.7 + *
     1.8 + * This code is free software; you can redistribute it and/or modify it
     1.9 + * under the terms of the GNU General Public License version 2 only, as
    1.10 + * published by the Free Software Foundation.  Oracle designates this
    1.11 + * particular file as subject to the "Classpath" exception as provided
    1.12 + * by Oracle in the LICENSE file that accompanied this code.
    1.13 + *
    1.14 + * This code is distributed in the hope that it will be useful, but WITHOUT
    1.15 + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    1.16 + * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    1.17 + * version 2 for more details (a copy is included in the LICENSE file that
    1.18 + * accompanied this code).
    1.19 + *
    1.20 + * You should have received a copy of the GNU General Public License version
    1.21 + * 2 along with this work; if not, write to the Free Software Foundation,
    1.22 + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    1.23 + *
    1.24 + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    1.25 + * or visit www.oracle.com if you need additional information or have any
    1.26 + * questions.
    1.27 + */
    1.28 +
    1.29 +package javax.annotation;
    1.30 +import java.lang.annotation.*;
    1.31 +import static java.lang.annotation.ElementType.*;
    1.32 +import static java.lang.annotation.RetentionPolicy.*;
    1.33 +
    1.34 +/**
    1.35 + * The Generated annotation is used to mark source code that has been generated.
    1.36 + * It can also be used to differentiate user written code from generated code
    1.37 + * in a single file. When used, the value element must have the name of the
    1.38 + * code generator. The recommended convention is to use the fully qualified
    1.39 + * name of the code generator in the value field .
    1.40 + * For example: com.company.package.classname.
    1.41 + * The date element is used to indicate the date the source was generated.
    1.42 + * The date element must follow the ISO 8601 standard. For example the date
    1.43 + * element would have the following value 2001-07-04T12:08:56.235-0700
    1.44 + * which represents 2001-07-04 12:08:56 local time in the U.S. Pacific
    1.45 + * Time time zone.
    1.46 + * The comment element is a place holder for any comments that the code
    1.47 + * generator may want to include in the generated code.
    1.48 + *
    1.49 + * @since Common Annotations 1.0
    1.50 + */
    1.51 +
    1.52 +@Documented
    1.53 +@Retention(SOURCE)
    1.54 +@Target({PACKAGE, TYPE, ANNOTATION_TYPE, METHOD, CONSTRUCTOR, FIELD,
    1.55 +        LOCAL_VARIABLE, PARAMETER})
    1.56 +public @interface Generated {
    1.57 +   /**
    1.58 +    * The value element MUST have the name of the code generator.
    1.59 +    * The recommended convention is to use the fully qualified name of the
    1.60 +    * code generator. For example: com.acme.generator.CodeGen.
    1.61 +    */
    1.62 +   String[] value();
    1.63 +
    1.64 +   /**
    1.65 +    * Date when the source was generated.
    1.66 +    */
    1.67 +   String date() default "";
    1.68 +
    1.69 +   /**
    1.70 +    * A place holder for any comments that the code generator may want to
    1.71 +    * include in the generated code.
    1.72 +    */
    1.73 +   String comments() default "";
    1.74 +}

mercurial