Project

General

Profile

Download (480 Bytes) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2008 EDIT
3
* European Distributed Institute of Taxonomy 
4
* http://www.e-taxonomy.eu
5
*/
6

    
7
package eu.etaxonomy.cdm.persistence.dao.common;
8

    
9
import java.util.List;
10
import eu.etaxonomy.cdm.model.common.LanguageString;
11

    
12
/**
13
 * @author a.babadshanjan
14
 * @since 12.09.2008
15
 */
16
public interface ILanguageStringDao extends ILanguageStringBaseDao<LanguageString> {
17

    
18
	public List<LanguageString> getAllLanguageStrings(Integer limit, Integer start);
19

    
20
}
(12-12/27)