Showing
1 changed file
with
4 additions
and
4 deletions
... | @@ -10,8 +10,8 @@ import javax.inject.Named; | ... | @@ -10,8 +10,8 @@ import javax.inject.Named; |
10 | import java.io.Serializable; | 10 | import java.io.Serializable; |
11 | 11 | ||
12 | /** | 12 | /** |
13 | - * Vue de addCountry.xhtml | 13 | + * addCountry.xhtml's view |
14 | - * Permet d'ajouter de nouveaux pays. | 14 | + * Used for adding new countries |
15 | */ | 15 | */ |
16 | @Named | 16 | @Named |
17 | @RequestScoped | 17 | @RequestScoped |
... | @@ -27,7 +27,7 @@ public class AddCountryView implements Serializable { | ... | @@ -27,7 +27,7 @@ public class AddCountryView implements Serializable { |
27 | } | 27 | } |
28 | 28 | ||
29 | /** | 29 | /** |
30 | - * S'appuie sur le service partagé. | 30 | + * Uses SharedService to add countries |
31 | * | 31 | * |
32 | * @param sharedService | 32 | * @param sharedService |
33 | */ | 33 | */ |
... | @@ -37,7 +37,7 @@ public class AddCountryView implements Serializable { | ... | @@ -37,7 +37,7 @@ public class AddCountryView implements Serializable { |
37 | } | 37 | } |
38 | 38 | ||
39 | /** | 39 | /** |
40 | - * Ajoute la pays du formulaire. | 40 | + * Adds the country named in the form |
41 | */ | 41 | */ |
42 | public void add() { | 42 | public void add() { |
43 | Country country = new Country(); | 43 | Country country = new Country(); | ... | ... |
-
Please register or login to post a comment