Subversion Repositories eFlore/Applications.coel

Rev

Rev 1006 | Rev 1329 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1006 Rev 1007
Line 13... Line 13...
13
 
13
 
Line 14... Line 14...
14
public class HashMapComposants extends HashMap<Object, Object> {
14
public class HashMapComposants extends HashMap<Object, Object> {
Line -... Line 15...
-
 
15
 
15
 
16
	private static final long serialVersionUID = -3087869118215860287L;
16
	private static final long serialVersionUID = -3087869118215860287L;
17
 
17
 
18
	@SuppressWarnings("unchecked")
Line 18... Line 19...
18
	public TextField<?> getTextField(String name)	{
19
	public TextField getTextField(String name)	{
19
		return (TextField<?>) get(name);		
20
		return (TextField) get(name);		
20
	}
21
	}
Line 50... Line 51...
50
	@SuppressWarnings("unchecked")
51
	@SuppressWarnings("unchecked")
51
	public ComboBox<Valeur> getComboBoxValeur(String nom)	{
52
	public ComboBox<Valeur> getComboBoxValeur(String nom)	{
52
		return (ComboBox<Valeur>) get(nom);
53
		return (ComboBox<Valeur>) get(nom);
53
	}
54
	}
Line -... Line 55...
-
 
55
	
54
	
56
	@SuppressWarnings("unchecked")
55
	public ComboBox<?> getComboBox(String nom)	{
57
	public ComboBox getComboBox(String nom)	{
56
		return (ComboBox<?>) get(nom);
58
		return (ComboBox) get(nom);
57
	}
59
	}