Skip to content

Instantly share code, notes, and snippets.

@axelhzf
Created March 7, 2013 09:26
Show Gist options
  • Select an option

  • Save axelhzf/5106739 to your computer and use it in GitHub Desktop.

Select an option

Save axelhzf/5106739 to your computer and use it in GitHub Desktop.

Revisions

  1. axelhzf created this gist Mar 7, 2013.
    17 changes: 17 additions & 0 deletions verbosity.md
    Original 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;
    }
    ```