Returns the current binder.
()
| 140 | |
| 141 | /** Returns the current binder. */ |
| 142 | protected PrivateBinder binder() { |
| 143 | checkState(binder != null, "The binder can only be used inside configure()"); |
| 144 | return binder; |
| 145 | } |
| 146 | |
| 147 | /** @see Binder#bindScope(Class, Scope) */ |
| 148 | protected final void bindScope(Class<? extends Annotation> scopeAnnotation, Scope scope) { |