Return-Path: Delivered-To: apmail-felix-commits-archive@www.apache.org Received: (qmail 76017 invoked from network); 15 Dec 2009 08:38:19 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 15 Dec 2009 08:38:19 -0000 Received: (qmail 72941 invoked by uid 500); 15 Dec 2009 08:38:19 -0000 Delivered-To: apmail-felix-commits-archive@felix.apache.org Received: (qmail 72870 invoked by uid 500); 15 Dec 2009 08:38:19 -0000 Mailing-List: contact commits-help@felix.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@felix.apache.org Delivered-To: mailing list commits@felix.apache.org Received: (qmail 72861 invoked by uid 99); 15 Dec 2009 08:38:19 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 15 Dec 2009 08:38:19 +0000 X-ASF-Spam-Status: No, hits=-2.9 required=5.0 tests=AWL,BAYES_00 X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 15 Dec 2009 08:38:17 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id A579623888FE; Tue, 15 Dec 2009 08:37:57 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r890687 - /felix/trunk/scr/src/main/java/org/apache/felix/scr/Component.java Date: Tue, 15 Dec 2009 08:37:57 -0000 To: commits@felix.apache.org From: fmeschbe@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20091215083757.A579623888FE@eris.apache.org> Author: fmeschbe Date: Tue Dec 15 08:37:57 2009 New Revision: 890687 URL: http://svn.apache.org/viewvc?rev=890687&view=rev Log: Add @since tags for methods added in R 1.2 Modified: felix/trunk/scr/src/main/java/org/apache/felix/scr/Component.java Modified: felix/trunk/scr/src/main/java/org/apache/felix/scr/Component.java URL: http://svn.apache.org/viewvc/felix/trunk/scr/src/main/java/org/apache/felix/scr/Component.java?rev=890687&r1=890686&r2=890687&view=diff ============================================================================== --- felix/trunk/scr/src/main/java/org/apache/felix/scr/Component.java (original) +++ felix/trunk/scr/src/main/java/org/apache/felix/scr/Component.java Tue Dec 15 08:37:57 2009 @@ -231,6 +231,8 @@ * Returns the org.osgi.service.component.ComponentInstance * representing this component or null if this component * is not been activated yet. + * + * @since 1.2 */ ComponentInstance getComponentInstance(); @@ -242,6 +244,8 @@ * This method never returns null, that is, if this method is * not declared in the component descriptor this method returns the * default value activate. + * + * @since 1.2 */ String getActivate(); @@ -253,6 +257,8 @@ *

* For a component declared in a Declarative Services 1.0 descriptor, this * method always returns false. + * + * @since 1.2 */ boolean isActivateDeclared(); @@ -264,6 +270,8 @@ * This method never returns null, that is, if this method is * not declared in the component descriptor this method returns the * default value deactivate. + * + * @since 1.2 */ String getDeactivate(); @@ -275,6 +283,8 @@ *

* For a component declared in a Declarative Services 1.0 descriptor, this * method always returns false. + * + * @since 1.2 */ boolean isDeactivateDeclared(); @@ -286,6 +296,8 @@ *

* For a component declared in a Declarative Services 1.0 descriptor, this * method always returns null. + * + * @since 1.2 */ String getModified(); @@ -311,6 +323,8 @@ *

Configuration is ignored. No Configuration Admin service * configuration is supplied to the component.
* + * + * @since 1.2 */ String getConfigurationPolicy();