Gets direct access to the underlying Binder.
()
| 72 | |
| 73 | /** Gets direct access to the underlying {@code Binder}. */ |
| 74 | protected Binder binder() { |
| 75 | checkState(binder != null, "The binder can only be used inside configure()"); |
| 76 | return binder; |
| 77 | } |
| 78 | |
| 79 | /** @see Binder#bindScope(Class, Scope) */ |
| 80 | protected void bindScope(Class<? extends Annotation> scopeAnnotation, Scope scope) { |
no test coverage detected