Subversion Repositories eFlore/Applications.coel

Rev

Rev 173 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
101 jpm 1
package org.tela_botanica.client.modeles;
2
 
3
import java.util.ArrayList;
4
import java.util.List;
5
 
6
public class InterneValeurListe {
7
 
8
	public static List<InterneValeur> getTypeAcronyme() {
9
		List<InterneValeur> acronymes = new ArrayList<InterneValeur>();
10
		acronymes.add(new InterneValeur("", "Aucun"));
11
		acronymes.add(new InterneValeur("IH", "Index Herbariorum"));
12
		acronymes.add(new InterneValeur("MNHN", "MNHN"));
13
		return acronymes;
14
	}
15
 
16
	public static List<InterneValeur> getTypeStructure() {
17
		List<InterneValeur> types = new ArrayList<InterneValeur>();
18
		types.add(new InterneValeur("", "Aucun"));
19
		types.add(new InterneValeur("stpu", "Publique"));
20
		types.add(new InterneValeur("stpr", "Privée"));
21
		return types;
22
	}
23
}