com.jgoodies.binding.list
Class LinkedListModel<E>

java.lang.Object
  extended by 
      extended by com.jgoodies.binding.list.LinkedListModel<E>
Type Parameters:
E - the type of the list elements
All Implemented Interfaces:
ObservableList<E>

Deprecated. Replaced by com.jgoodies.common.collect.LinkedListModel. This class will be removed from the next library version.

@Deprecated
public final class LinkedListModel<E>
extends
implements ObservableList<E>

Adds ListModel capabilities to its superclass LinkedList, i. e. allows to observe changes in the content and structure. Useful for lists that are bound to list views, for example JList, JComboBox and JTable.

Version:
$Revision: 1.13 $
Author:
Karsten Lentzsch

Constructor Summary
LinkedListModel()
          Deprecated. Constructs an empty linked list.
LinkedListModel(java.util.Collection<? extends E> c)
          Deprecated. Constructs a linked list containing the elements of the specified collection, in the order they are returned by the collection's iterator.
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

LinkedListModel

public LinkedListModel()
Deprecated. 
Constructs an empty linked list.


LinkedListModel

public LinkedListModel(java.util.Collection<? extends E> c)
Deprecated. 
Constructs a linked list containing the elements of the specified collection, in the order they are returned by the collection's iterator.

Parameters:
c - the collection whose elements are to be placed into this list.
Throws:
java.lang.NullPointerException - if the specified collection is null


Copyright © 2002-2010 JGoodies Karsten Lentzsch. All Rights Reserved.