Created
August 6, 2013 01:23
-
-
Save marciojrtorres/6161227 to your computer and use it in GitHub Desktop.
Código Java documentado com JavaDoc
This file contains 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 characters
/** | |
* Lida com todas as atividades relacionadas ao movimento fiscal e contábil | |
* | |
* @author Márcio Torres | |
* @version 1.0 | |
* | |
*/ | |
class Contabil { | |
/** | |
* Representa o instante no tempo a cada instanciação da classe | |
*/ | |
public final Date agora = new Date(); | |
/** | |
* Encerra uma lista de lançamentos de acordo com | |
* um intervalo de datas | |
* | |
* @param inicio Data de início do intervalo | |
* @param fim Data de fim do intervalo | |
* | |
* @return RelatorioContabil com os dados dos lançamentos encerrados | |
* | |
* @throws NullPointerException se alguma das datas for nula | |
* @throws IllegalArgumentException se a data de início for | |
* posterior a de fim | |
*/ | |
public RelatorioContabil encerraIntervalo(Date inicio, Date fim) { | |
// ... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment