Toggle navigation
Toggle navigation
This project
Loading...
Sign in
grogv3
/
grog-cubi
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
Jean-Francois Leveque
2017-02-07 14:22:05 +0100
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
91fc6afb8be0206c49bff7d5542299bb2b8bb7b2
91fc6afb
1 parent
f8511a19
Ajout de commentaires pour les constructeurs vides
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
0 deletions
src/main/java/org/legrog/web/xyz/AddCountryView.java
src/main/java/org/legrog/web/xyz/ListCountriesView.java
src/main/java/org/legrog/web/xyz/AddCountryView.java
View file @
91fc6af
...
...
@@ -18,6 +18,7 @@ public class AddCountryView implements Serializable {
private
transient
String
countryName
;
//no args constructor to make it proxyable
public
AddCountryView
()
{
}
...
...
src/main/java/org/legrog/web/xyz/ListCountriesView.java
View file @
91fc6af
...
...
@@ -17,6 +17,7 @@ public class ListCountriesView implements Serializable {
private
transient
List
<
Country
>
countries
;
//no args constructor to make it proxyable
public
ListCountriesView
()
{
}
...
...
Please
register
or
login
to post a comment