Java com.jgoodies.common.collect ArrayListModel fields, constructors, methods, implement or subclass

Example usage for Java com.jgoodies.common.collect ArrayListModel fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.jgoodies.common.collect ArrayListModel.

The text is from its open source code.

Constructor

ArrayListModel()
Constructs an empty list with an initial capacity of ten.
ArrayListModel(int initialCapacity)
Constructs an empty list with the specified initial capacity.
ArrayListModel(Collection c)
Constructs a list containing the elements of the specified collection, in the order they are returned by the collection's iterator.

Method

booleanadd(E e)
booleanremoveAll(Collection c)
Removes from this collection all of its elements that are contained in the specified collection (optional operation).