added a readme file
[taxeditor.git] / taxeditor-navigation / src / main / java / eu / etaxonomy / taxeditor / navigation / navigator / EmptyRoot.java
1 // $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 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<Classification> getParentBeans() {
40 return new ArrayList<Classification>();
41 }
42
43 }