ca.odell.glazedlists.impl.ListCollectionListModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of glazedlists_java15 Show documentation
Show all versions of glazedlists_java15 Show documentation
Event-driven lists for dynamically filtered and sorted tables
The newest version!
/* Glazed Lists (c) 2003-2006 */
/* http://publicobject.com/glazedlists/ publicobject.com,*/
/* O'Dell Engineering Ltd.*/
package ca.odell.glazedlists.impl;
// the core Glazed Lists package
import ca.odell.glazedlists.CollectionList;
import java.util.Collections;
import java.util.List;
/**
* Returns the List itself for a List of Lists.
*
* @author Jesse Wilson
*/
public class ListCollectionListModel implements CollectionList.Model,E> {
public List getChildren(List parent) {
if(parent == null) return Collections.emptyList();
return parent;
}
}