Project

General

Profile

Download (874 Bytes) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2007 EDIT
3
* European Distributed Institute of Taxonomy 
4
* http://www.e-taxonomy.eu
5
* 
6
* The contents of this file are subject to the Mozilla Public License Version 1.1
7
* See LICENSE.TXT at the top of this package for the full license terms.
8
*/
9

    
10
package eu.etaxonomy.taxeditor.navigation.navigator;
11

    
12
import java.util.ArrayList;
13
import java.util.List;
14

    
15
import eu.etaxonomy.cdm.model.common.ITreeNode;
16
import eu.etaxonomy.cdm.model.taxon.Classification;
17

    
18
/**
19
 * <p>EmptyRoot class.</p>
20
 *
21
 * @author n.hoffmann
22
 * @created Mar 23, 2010
23
 * @version 1.0
24
 */
25
public class EmptyRoot extends Root {
26

    
27
	/**
28
	 * <p>Constructor for EmptyRoot.</p>
29
	 */
30
	public EmptyRoot() {
31
		super(null);
32
	}
33
	
34
	/**
35
	 * <p>getParentBeans</p>
36
	 *
37
	 * @return a {@link java.util.List} object.
38
	 */
39
	public List<ITreeNode> getParentBeans() {
40
		return new ArrayList<ITreeNode>();
41
	}
42
	
43
}
(3-3/21)