-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
60f1daf
commit d8198f5
Showing
3 changed files
with
7 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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. | ||
|
@@ -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> { | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters