All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.inject.spi.LinkedKeyBinding Maven / Gradle / Ivy

There is a newer version: 4.4.2.0
Show newest version
package com.google.inject.spi;

import com.google.inject.Binding;
import com.google.inject.Key;

/**
 * A binding to a linked key. The other key's binding is used to resolve injections.
 */
public interface LinkedKeyBinding extends Binding {

    /**
     * Returns the linked key used to resolve injections. That binding can be retrieved from an
     * injector using {@link com.google.inject.Injector#getBinding(Key) Injector.getBinding(key)}.
     */
    Key getLinkedKey();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy