org.osgl.inject.provider.LinkedListProvider 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 javax.inject.Provider;
import java.util.LinkedList;
/**
* Inject {@link LinkedList} and {@link LinkedList} using
* {@link org.osgl.util.DelegatingList} implementation.
*/
public class LinkedListProvider implements Provider> {
public static final LinkedListProvider INSTANCE = new LinkedListProvider();
@Override
public LinkedList> get() {
return new LinkedList
© 2015 - 2025 Weber Informatics LLC | Privacy Policy