Author: pderop
Date: Wed Apr 27 19:49:01 2011
New Revision: 1097220
URL: http://svn.apache.org/viewvc?rev=1097220&view=rev
Log:
fixed javadoc
Modified:
felix/trunk/dependencymanager/annotation/src/main/java/org/apache/felix/dm/annotation/api/Composition.java
Modified:
felix/trunk/dependencymanager/annotation/src/main/java/org/apache/felix/dm/annotation/api/Composition.java
URL:
http://svn.apache.org/viewvc/felix/trunk/dependencymanager/annotation/src/main/java/org/apache/felix/dm/annotation/api/Composition.java?rev=1097220&r1=1097219&r2=1097220&view=diff
==============================================================================
---
felix/trunk/dependencymanager/annotation/src/main/java/org/apache/felix/dm/annotation/api/Composition.java
(original)
+++
felix/trunk/dependencymanager/annotation/src/main/java/org/apache/felix/dm/annotation/api/Composition.java
Wed Apr 27 19:49:01 2011
@@ -26,14 +26,15 @@ import java.lang.annotation.Target;
/**
* Annotates a method returning the list of objects which are part of a
Component implementation.
* When implementing complex Components, you often need to use more than one
object instances.
- * Moreover, several of these instances might want to have dependencies
injected, as was as lifecycle
+ * Moreover, several of these instances might want to have dependencies
injected, as well as lifecycle
* callbacks invoked, like the methods annotated with {@link Init}, {@link
Start}, {@link Stop},
* {@link Destroy} annotations. In such cases you can tell the dependency
manager which instances to
* consider, by annotating a method in your Component, returning a list of
objects which are part
* of the implementation.
* <p>
* This annotation may be applied on a method which is part of class annotated
with either a {@link Component},
- * {@link AspectService}, {@link AdapterService}, or {@link
ResourceAdapterService} annotation.
+ * {@link AspectService}, {@link AdapterService}, {@link
FactoryConfigurationAdapterService} or
+ * {@link ResourceAdapterService} annotation.
*
* <h3>Usage Examples</h3>
*