Project

General

Profile

Download (844 Bytes) Statistics
| Branch: | Tag: | Revision:
1 56b382bd n.hoffmann
// $Id$
2
/**
3
* Copyright (C) 2007 EDIT
4
* European Distributed Institute of Taxonomy 
5
* http://www.e-taxonomy.eu
6
* 
7
* The contents of this file are subject to the Mozilla Public License Version 1.1
8
* See LICENSE.TXT at the top of this package for the full license terms.
9
*/
10
11
package eu.etaxonomy.taxeditor.navigation.navigator;
12
13
import java.util.ArrayList;
14
import java.util.List;
15
16 d31115e0 n.hoffmann
import eu.etaxonomy.cdm.model.taxon.Classification;
17 56b382bd n.hoffmann
18
/**
19 3be6ef3e n.hoffmann
 * <p>EmptyRoot class.</p>
20
 *
21 56b382bd n.hoffmann
 * @author n.hoffmann
22
 * @created Mar 23, 2010
23
 * @version 1.0
24
 */
25
public class EmptyRoot extends Root {
26 2d9a13f7 n.hoffmann
27 3be6ef3e n.hoffmann
	/**
28
	 * <p>Constructor for EmptyRoot.</p>
29
	 */
30 2d9a13f7 n.hoffmann
	public EmptyRoot() {
31
		super(null);
32
	}
33 56b382bd n.hoffmann
	
34 3be6ef3e n.hoffmann
	/**
35
	 * <p>getParentBeans</p>
36
	 *
37
	 * @return a {@link java.util.List} object.
38
	 */
39 d31115e0 n.hoffmann
	public List<Classification> getParentBeans() {
40
		return new ArrayList<Classification>();
41 56b382bd n.hoffmann
	}
42
	
43
}