ref #7010 Disable multi selection for all tree viewers (temporarily)
[taxeditor.git] / eu.etaxonomy.taxeditor.navigation / src / main / java / eu / etaxonomy / taxeditor / navigation / navigator / EmptyRoot.java
index 7618d3c68b45ce18dcbca00540632f4b67143bc6..3484244531e5b8c373a6cdd78f05fe864554afce 100644 (file)
@@ -1,4 +1,3 @@
-// $Id$
 /**
 * Copyright (C) 2007 EDIT
 * European Distributed Institute of Taxonomy 
@@ -13,6 +12,7 @@ package eu.etaxonomy.taxeditor.navigation.navigator;
 import java.util.ArrayList;
 import java.util.List;
 
+import eu.etaxonomy.cdm.model.common.ITreeNode;
 import eu.etaxonomy.cdm.model.taxon.Classification;
 
 /**
@@ -36,8 +36,8 @@ public class EmptyRoot extends Root {
         *
         * @return a {@link java.util.List} object.
         */
-       public List<Classification> getParentBeans() {
-               return new ArrayList<Classification>();
+       public List<ITreeNode> getParentBeans() {
+               return new ArrayList<ITreeNode>();
        }
        
 }