aboutsummaryrefslogtreecommitdiffstats
path: root/tests/multiIncremental/pr242797_1/base/src/bug/LocalizedManager.java
blob: bf89e05a71ad2f769d779073cf925d2d58016465 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
 * Created on Jul 25, 2008
 */
package bug;

import java.util.List;


public interface LocalizedManager extends Manager{
	
	public Class<? extends Localized> getLocalizedType();
	
	public List<? extends Localized> getAllInLocale(String language);
	
	public List<? extends Localized> getAllInLocales(List<String> languages);
	
	public List<? extends Localized> getAllInDefaultLocales();
	
	public List<? extends Localized> getBestInLocales(List<String> languages);
	
	public List<? extends Localized> getBestInDefaultLocales();
	
	public List<? extends Localized> removeWeakLanguageMatches(List<? extends Localized> localized);
	
	public List<? extends Localized> removeWeakLanguageMatches(List<? extends Localized> localized, List<String> languageOrder);
	
	public DuplicateStrategy getLocalizedDuplicateStrategy();
	
	public List<String> getDefaultLanguageOrder();

}