Project

General

Profile

Download (1.03 KB) 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.cdm.persistence.dao.description;
11

    
12
import java.util.List;
13
import java.util.UUID;
14

    
15
import eu.etaxonomy.cdm.model.description.FeatureNode;
16
import eu.etaxonomy.cdm.model.description.FeatureTree;
17
import eu.etaxonomy.cdm.persistence.dao.common.IIdentifiableDao;
18

    
19
/**
20
 * @author a.mueller
21
 * @created 10.07.2008
22
 * @version 1.0
23
 */
24
public interface IFeatureTreeDao extends IIdentifiableDao<FeatureTree> {
25
    public List<FeatureTree> list();
26

    
27
    public UUID DefaultFeatureTreeUuid = UUID.fromString("ac8d4e58-926d-4f81-ac77-cebdd295df7c");
28

    
29
    /**
30
     * Loads nodes and the nodes child nodes recursivly
31
     * @param nodes
32
     * @param nodePaths
33
     */
34
    public void deepLoadNodes(List<FeatureNode> nodes, List<String> nodePaths);
35
}
(5-5/10)