You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by fm...@apache.org on 2009/12/15 09:37:57 UTC

svn commit: r890687 - /felix/trunk/scr/src/main/java/org/apache/felix/scr/Component.java

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 <code>org.osgi.service.component.ComponentInstance</code>
      * representing this component or <code>null</code> if this component
      * is not been activated yet.
+     *
+     * @since 1.2
      */
     ComponentInstance getComponentInstance();
 
@@ -242,6 +244,8 @@
      * This method never returns <code>null</code>, that is, if this method is
      * not declared in the component descriptor this method returns the
      * default value <i>activate</i>.
+     *
+     * @since 1.2
      */
     String getActivate();
 
@@ -253,6 +257,8 @@
      * <p>
      * For a component declared in a Declarative Services 1.0 descriptor, this
      * method always returns <code>false</code>.
+     *
+     * @since 1.2
      */
     boolean isActivateDeclared();
 
@@ -264,6 +270,8 @@
      * This method never returns <code>null</code>, that is, if this method is
      * not declared in the component descriptor this method returns the
      * default value <i>deactivate</i>.
+     *
+     * @since 1.2
      */
     String getDeactivate();
 
@@ -275,6 +283,8 @@
      * <p>
      * For a component declared in a Declarative Services 1.0 descriptor, this
      * method always returns <code>false</code>.
+     *
+     * @since 1.2
      */
     boolean isDeactivateDeclared();
 
@@ -286,6 +296,8 @@
      * <p>
      * For a component declared in a Declarative Services 1.0 descriptor, this
      * method always returns <code>null</code>.
+     *
+     * @since 1.2
      */
     String getModified();
 
@@ -311,6 +323,8 @@
      * <dd>Configuration is ignored. No Configuration Admin service
      * configuration is supplied to the component.</dd>
      * </dl>
+     *
+     * @since 1.2
      */
     String getConfigurationPolicy();