Example usage for org.apache.commons.collections4.list AbstractListDecorator subclass-usage

List of usage examples for org.apache.commons.collections4.list AbstractListDecorator subclass-usage

Introduction

In this page you can find the example usage for org.apache.commons.collections4.list AbstractListDecorator subclass-usage.

Usage

From source file com.xpn.xwiki.internal.doc.XWikiAttachmentList.java

/**
 * AttachmentList that holds elements in order of filename.
 * 
 * @version $Id: b474bcb4d2538309700472ca909956978a6a921a $
 * @since 11.0RC1
 */

From source file org.molasdin.wbase.collections.list.ExtendedListDecorator.java

/**
 * Created by dbersenev on 16.04.2014.
 */
public class ExtendedListDecorator<T> extends AbstractListDecorator<T> implements ExtendedList<T> {

    private Comparator<T> comparator;