source.ca.odell.glazedlists.impl.ListCollectionListModel Maven / Gradle / Ivy
/* 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.EMPTY_LIST;
return parent;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy