Project

General

Profile

« Previous | Next » 

Revision cedc4ff1

Added by Katja Luther about 6 years ago

ref #2380: implement usage of Dto for taxon navigator

View differences:

eu.etaxonomy.taxeditor.navigation/src/main/java/eu/etaxonomy/taxeditor/navigation/navigator/EmptyRoot.java
1 1
/**
2 2
* Copyright (C) 2007 EDIT
3
* European Distributed Institute of Taxonomy 
3
* European Distributed Institute of Taxonomy
4 4
* http://www.e-taxonomy.eu
5
* 
5
*
6 6
* The contents of this file are subject to the Mozilla Public License Version 1.1
7 7
* See LICENSE.TXT at the top of this package for the full license terms.
8 8
*/
......
12 12
import java.util.ArrayList;
13 13
import java.util.List;
14 14

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

  
18 17
/**
19 18
 * <p>EmptyRoot class.</p>
......
30 29
	public EmptyRoot() {
31 30
		super(null);
32 31
	}
33
	
32

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

  
43 43
}

Also available in: Unified diff