com.google.inject.spi.UntargettedBinding Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of guice Show documentation
Show all versions of guice Show documentation
Guice implementation with named modules for Java 11+
package com.google.inject.spi;
import com.google.inject.Binding;
/**
* An untargetted binding. This binding indicates that the injector should use its implicit binding
* strategies to resolve injections.
*
*/
public interface UntargettedBinding extends Binding {
}