Skip to content

Instantly share code, notes, and snippets.

@axelhzf
Created March 7, 2013 09:26
Show Gist options
  • Save axelhzf/5106739 to your computer and use it in GitHub Desktop.
Save axelhzf/5106739 to your computer and use it in GitHub Desktop.
Java is too verbose

Getters y setter no son suficientemente verbose, mejor añadimos unos comentarios muy útiles ¬¬

    /**
     * @return the mail
     */
    public String getMail() {
        return mail;
    }

    /**
     * @param mail the mail to set
     */
    public void setMail(String mail) {
        this.mail = mail;
    }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment