org.osgl.inject.provider.OsglSetProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of genie Show documentation
Show all versions of genie Show documentation
A JSR330 style dependency injection solution
package org.osgl.inject.provider;
import org.osgl.util.C;
import javax.inject.Provider;
/**
* Inject {@link java.util.Set} using {@link org.osgl.util.DelegatingSet}
*/
public class OsglSetProvider implements Provider> {
public static final OsglSetProvider INSTANCE = new OsglSetProvider();
@Override
public C.Set> get() {
return C.newSet();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy