Fix typos in ModuleAssembly javadoc
Project: http://git-wip-us.apache.org/repos/asf/polygene-java/repo Commit: http://git-wip-us.apache.org/repos/asf/polygene-java/commit/78e08739 Tree: http://git-wip-us.apache.org/repos/asf/polygene-java/tree/78e08739 Diff: http://git-wip-us.apache.org/repos/asf/polygene-java/diff/78e08739 Branch: refs/heads/develop Commit: 78e087392938e6ae664272a6626b9639a9bdd99f Parents: 1170af3 Author: Paul Merlin <[email protected]> Authored: Sat May 27 10:29:24 2017 +0200 Committer: Paul Merlin <[email protected]> Committed: Sat May 27 10:29:24 2017 +0200 ---------------------------------------------------------------------- .../apache/polygene/bootstrap/ModuleAssembly.java | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/polygene-java/blob/78e08739/core/bootstrap/src/main/java/org/apache/polygene/bootstrap/ModuleAssembly.java ---------------------------------------------------------------------- diff --git a/core/bootstrap/src/main/java/org/apache/polygene/bootstrap/ModuleAssembly.java b/core/bootstrap/src/main/java/org/apache/polygene/bootstrap/ModuleAssembly.java index 988ab94..ebf59d3 100644 --- a/core/bootstrap/src/main/java/org/apache/polygene/bootstrap/ModuleAssembly.java +++ b/core/bootstrap/src/main/java/org/apache/polygene/bootstrap/ModuleAssembly.java @@ -87,7 +87,7 @@ public interface ModuleAssembly * * @param transientTypes The types that specifies the Transient types. * - * @return An TransientDeclaration for the specified Transient types. + * @return A TransientDeclaration for the specified Transient types. */ TransientDeclaration transients( Class<?>... transientTypes ); @@ -97,7 +97,7 @@ public interface ModuleAssembly * * @param specification The Specification that specifies the TransientComposite types of interest. * - * @return An TransientDeclaration for the specified TransientComposite types. + * @return A TransientDeclaration for the specified TransientComposite types. */ TransientDeclaration transients( Predicate<? super TransientAssembly> specification ); @@ -107,7 +107,7 @@ public interface ModuleAssembly * * @param valueTypes The types that specifies the Value types. * - * @return An ValueDeclaration for the specified Value types. + * @return A ValueDeclaration for the specified Value types. */ ValueDeclaration values( Class<?>... valueTypes ); @@ -117,7 +117,7 @@ public interface ModuleAssembly * * @param specification The Specification that specifies the ValueComposite types of interest. * - * @return An ValueDeclaration for the specified ValueComposite types. + * @return A ValueDeclaration for the specified ValueComposite types. */ ValueDeclaration values( Predicate<? super ValueAssembly> specification ); @@ -147,7 +147,7 @@ public interface ModuleAssembly * * @param configurationTypes The types that specifies the Configuration types. * - * @return An ConfigurationDeclaration for the specified Configuration types. + * @return A ConfigurationDeclaration for the specified Configuration types. */ ConfigurationDeclaration configurations( Class<?>... configurationTypes ); @@ -157,7 +157,7 @@ public interface ModuleAssembly * * @param specification The Specification that specifies the ConfigurationComposite types of interest. * - * @return An ConfigurationDeclaration for the specified EntityComposite types. + * @return A ConfigurationDeclaration for the specified EntityComposite types. */ ConfigurationDeclaration configurations( Predicate<HasTypes> specification ); @@ -191,7 +191,7 @@ public interface ModuleAssembly * * @param serviceTypes The types that specifies the Service types. * - * @return An ServiceDeclaration for the specified Service types. + * @return A ServiceDeclaration for the specified Service types. */ ServiceDeclaration addServices( Class<?>... serviceTypes ); @@ -201,7 +201,7 @@ public interface ModuleAssembly * * @param serviceTypes The types that specifies the Service types. * - * @return An ServiceDeclaration for the specified Service types. + * @return A ServiceDeclaration for the specified Service types. */ ServiceDeclaration services( Class<?>... serviceTypes ); @@ -211,7 +211,7 @@ public interface ModuleAssembly * * @param specification The Specification that specifies the ServiceComposite types of interest. * - * @return An ServiceDeclaration for the specified ServiceComposite types. + * @return A ServiceDeclaration for the specified ServiceComposite types. */ ServiceDeclaration services( Predicate<? super ServiceAssembly> specification );
