Returns true if this is the default scope. In this case a new instance will be provided for each injection.
()
| 231 | * each injection. |
| 232 | */ |
| 233 | public boolean isNoScope() { |
| 234 | return getScopeInstance() == Scopes.NO_SCOPE; |
| 235 | } |
| 236 | |
| 237 | /** Returns true if this scope is a singleton that should be loaded eagerly in {@code stage}. */ |
| 238 | public boolean isEagerSingleton(Stage stage) { |
no test coverage detected