Created
March 7, 2013 09:26
-
-
Save axelhzf/5106739 to your computer and use it in GitHub Desktop.
Revisions
-
axelhzf created this gist
Mar 7, 2013 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,17 @@ Getters y setter no son suficientemente verbose, mejor añadimos unos comentarios muy útiles ¬¬ ```java /** * @return the mail */ public String getMail() { return mail; } /** * @param mail the mail to set */ public void setMail(String mail) { this.mail = mail; } ```