Example usage for java.util List interface-usage

List of usage examples for java.util List interface-usage

Introduction

In this page you can find the example usage for java.util List interface-usage.

Usage

From source file ar.com.zauber.commons.collections.DynamicSortedCollection.java

/**
 * A List that can be configured with a Comparator
 * at any moment and its elements are re-sorted
 * after that.
 *
 * @param <T> The kind of objects that you'll save within the collection

From source file org.pac4j.oauth.profile.JsonList.java

/**
 * This class creates a list of objects (buildable from JSON).
 * 
 * @author Jerome Leleu
 * @since 1.1.0
 */

From source file ListSet.java

public class ListSet implements List, Set {
    private final List list = new ArrayList();
    private final Set set = new HashSet();

    public ListSet() {
        super();

From source file org.openengsb.core.test.ServiceList.java

public final class ServiceList<ServiceType> implements List<ServiceType> {
    private ServiceTracker<ServiceType, ServiceType> tracker;

    public ServiceList(ServiceTracker<ServiceType, ServiceType> tracker) {
        this.tracker = tracker;
        tracker.open();

From source file org.openengsb.core.test.ServiceReferenceList.java

public final class ServiceReferenceList<ServiceType> implements List<ServiceReference<ServiceType>> {
    private ServiceTracker<ServiceType, ServiceType> tracker;

    public ServiceReferenceList(ServiceTracker<ServiceType, ServiceType> tracker) {
        this.tracker = tracker;
        tracker.open();

From source file com.anrisoftware.sscontrol.ldap.statements.DomainComponent.java

/**
 * Domain components.
 * 
 * @author Erwin Mueller, erwin.mueller@deventm.org
 * @since 1.0
 */

From source file org.apache.syncope.client.console.commons.PropertyList.java

public abstract class PropertyList<T> implements List<String> {

    @Override
    public boolean add(final String item) {
        final List<String> list = getEnumValuesAsList(getValues());
        final boolean res = list.add(item);

From source file org.grails.datastore.mapping.riak.collection.RiakEntityIndex.java

/**
 * @author J. Brisbin <jon@jbrisbin.com>
 */
@SuppressWarnings({ "hiding", "rawtypes" })
public class RiakEntityIndex<Long> extends AbstractList implements List, RiakCollection {

From source file org.sonar.javascript.model.implementations.SeparatedList.java

public class SeparatedList<T> implements List<T> {

    private final List<T> list;
    private final List<InternalSyntaxToken> separators;
    /**
     * +   * FIXME to remove when remove use of AstNode

From source file info.archinnov.achilles.internal.proxy.wrapper.ListWrapper.java

public class ListWrapper extends AbstractWrapper implements List<Object> {
    private static final Logger log = LoggerFactory.getLogger(ListWrapper.class);

    private List<Object> target;

    public ListWrapper(List<Object> target) {