mirror of
https://github.com/mbierlee/poodinis.git
synced 2024-11-15 04:04:01 +01:00
Add additional motivation to documentation.
This commit is contained in:
parent
5734b983fc
commit
0d56a4e5c3
|
@ -63,7 +63,7 @@ struct Autowire(QualifierType = UseMemberType) {
|
|||
};
|
||||
|
||||
/**
|
||||
* Alias to "Autowire" UDA for those used to Spring.
|
||||
* Alias to "Autowire" UDA for those used to Spring's @Autowired annotation.
|
||||
*/
|
||||
alias Autowired = Autowire;
|
||||
|
||||
|
@ -74,7 +74,8 @@ alias Autowired = Autowire;
|
|||
* All members are resolved using the given container. Qualifiers are used to determine the type of class to
|
||||
* resolve for any member of instance.
|
||||
*
|
||||
* Note that private members will not be autowired.
|
||||
* Note that private members will not be autowired because the autowiring mechanism is not able to by-pass
|
||||
* member visibility protection.
|
||||
*
|
||||
* See_Also: Autowire
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue