Merge branch 'develop' into LibrAlign
[taxeditor.git] / eu.etaxonomy.taxeditor.navigation / src / main / java / eu / etaxonomy / taxeditor / navigation / navigator / EmptyRoot.java
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.taxon.Classification;
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 public List<Classification> getParentBeans() {
39 return new ArrayList<Classification>();
40 }
41
42 }