Return-Path: Delivered-To: apmail-geronimo-scm-archive@www.apache.org Received: (qmail 20290 invoked from network); 30 Oct 2006 16:00:35 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 30 Oct 2006 16:00:35 -0000 Received: (qmail 37649 invoked by uid 500); 30 Oct 2006 16:00:46 -0000 Delivered-To: apmail-geronimo-scm-archive@geronimo.apache.org Received: (qmail 37614 invoked by uid 500); 30 Oct 2006 16:00:46 -0000 Mailing-List: contact scm-help@geronimo.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: dev@geronimo.apache.org List-Id: Delivered-To: mailing list scm@geronimo.apache.org Received: (qmail 37603 invoked by uid 99); 30 Oct 2006 16:00:46 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 30 Oct 2006 08:00:46 -0800 X-ASF-Spam-Status: No, hits=0.6 required=10.0 tests=NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 30 Oct 2006 08:00:32 -0800 Received: by eris.apache.org (Postfix, from userid 65534) id 1FB661A98A3; Mon, 30 Oct 2006 06:00:34 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r469147 - /geronimo/specs/trunk/geronimo-annotation_1.0_spec/src/main/java/javax/annotation/Generated.java Date: Mon, 30 Oct 2006 14:00:34 -0000 To: scm@geronimo.apache.org From: jbohn@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20061030140034.1FB661A98A3@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: jbohn Date: Mon Oct 30 06:00:33 2006 New Revision: 469147 URL: http://svn.apache.org/viewvc?view=rev&rev=469147 Log: GERONIMO-2535 Add Generated annotation class to specs JSR 52 compliance Added: geronimo/specs/trunk/geronimo-annotation_1.0_spec/src/main/java/javax/annotation/Generated.java (with props) Added: geronimo/specs/trunk/geronimo-annotation_1.0_spec/src/main/java/javax/annotation/Generated.java URL: http://svn.apache.org/viewvc/geronimo/specs/trunk/geronimo-annotation_1.0_spec/src/main/java/javax/annotation/Generated.java?view=auto&rev=469147 ============================================================================== --- geronimo/specs/trunk/geronimo-annotation_1.0_spec/src/main/java/javax/annotation/Generated.java (added) +++ geronimo/specs/trunk/geronimo-annotation_1.0_spec/src/main/java/javax/annotation/Generated.java Mon Oct 30 06:00:33 2006 @@ -0,0 +1,45 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +// +// This source code implements specifications defined by the Java +// Community Process. In order to remain compliant with the specification +// DO NOT add / change / or delete method signatures! +// +package javax.annotation; + +import java.lang.annotation.Target; +import java.lang.annotation.Retention; +import java.lang.annotation.ElementType; +import java.lang.annotation.RetentionPolicy; + +/** + * @version $Rev$ $Date$ + */ +@Target({ElementType.ANNOTATION_TYPE, ElementType.CONSTRUCTOR, ElementType.FIELD, +ElementType.LOCAL_VARIABLE, ElementType.METHOD, ElementType.PACKAGE, +ElementType.PARAMETER, ElementType.TYPE}) + +@Retention(RetentionPolicy.SOURCE) + +public @interface Generated { + String[] value(); + String date() default ""; + String comments() default ""; +} Propchange: geronimo/specs/trunk/geronimo-annotation_1.0_spec/src/main/java/javax/annotation/Generated.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: geronimo/specs/trunk/geronimo-annotation_1.0_spec/src/main/java/javax/annotation/Generated.java ------------------------------------------------------------------------------ svn:keywords = Date Revision Propchange: geronimo/specs/trunk/geronimo-annotation_1.0_spec/src/main/java/javax/annotation/Generated.java ------------------------------------------------------------------------------ svn:mime-type = text/plain