Project

General

Profile

Download (844 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.persistence.dto.TaxonNodeDto;
16

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

    
26
	/**
27
	 * <p>Constructor for EmptyRoot.</p>
28
	 */
29
	public EmptyRoot() {
30
		super(null);
31
	}
32

    
33
	/**
34
	 * <p>getParentBeans</p>
35
	 *
36
	 * @return a {@link java.util.List} object.
37
	 */
38
	@Override
39
    public List<TaxonNodeDto> getParentBeans() {
40
		return new ArrayList<TaxonNodeDto>();
41
	}
42

    
43
}
(3-3/19)