* Creates a new tree model.
*
* @param fileModel Model that keeps track of open files.
*/
public FlashTreeModel(final FileModel fileModel) {
super(new FlashTreeRootNode());
this.fileModel = fileModel;
fileModel.addListener(internalFileModelListener);
}