Skip to content

Commit

Permalink
Fix javadoc lint
Browse files Browse the repository at this point in the history
  • Loading branch information
adrienlauer committed Jul 30, 2015
1 parent 60f1daf commit d8198f5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@

/**
* This plugin is a multi round plugin.
* <p/>
* <p>
* It uses two round because it needs to scan user interfaces, for instance those annotated with {@code @Finder}.
* Then in the second round, it scan the implementations of the scanned interfaces.
* <p/>
* </p>
* This plugin also bind default implementation for repository, factory and assembler. For this, it uses the
* {@link org.seedstack.business.internal.strategy.api.BindingStrategy}.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@

/**
* FactoryInternal allows the creations of {@link org.seedstack.business.api.domain.DomainObject} objects using their constructors.
* <p/>
* <p>
* The {@link #create(Object...)} method will look for a constructor matching the given parameters.
* If a constructor is found the method will use it to create a new instance. If ambiguous constructors are
* found, it throws an exception.
* <p/>
* </p>
* Ambiguous constructor could be found in the following cases:
*
* 1. If a parameter is null and multiple constructors accept null.
Expand All @@ -54,7 +54,7 @@
*
* @author [email protected]
* @author [email protected]
* @param <DO>
* @param <DO> the domain object type
*/
public class FactoryInternal<DO extends DomainObject & Producible> implements Factory<DO> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,9 @@

/**
* GenericBindingStrategy resolves bindings for generic classes to implementations with unresolved type variables.
* <p/>
* <p>
* For instance it is possible to bind the following classes:
* </p>
* <pre>
* class MyClass&lt;I, J&gt; { }
*
Expand Down

0 comments on commit d8198f5

Please sign in to comment.