All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ca.odell.glazedlists.impl.ListCollectionListModel Maven / Gradle / Ivy

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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy