Package ca.odell.glazedlists
Interface CollectionList.Model<E,S>
-
- Enclosing class:
- CollectionList<S,E>
public static interface CollectionList.Model<E,S>
Provides the logic to map a parent object (e.g. an album) to its children (e.g. the songs on the album). Serves basically the same purpose asTreeModel
does to a JTree in Swing.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<S>
getChildren(E parent)
Return a list of the child nodes for a parent node.
-