Added ConfigData into javadocs

This commit is contained in:
Marcin Woźniak 2020-12-01 21:16:47 +01:00
parent 96c903ed15
commit 708cedf7b4
Signed by: y0rune
GPG Key ID: F204C385F57EB348
1 changed files with 23 additions and 1 deletions

View File

@ -8,22 +8,44 @@ public class ConfigData {
private Date end;
private InputStream filestream;
/*
* ConfigData
*
* @param start when the configdata begins
* @param end when the configdata ends
* @param filestream where the filestream is
*/
public ConfigData(Date start, Date end, InputStream filestream) {
this.start = start;
this.end = end;
this.filestream = filestream;
}
/*
* getFilestream
*
* @return filestream
*/
public InputStream getFilestream() {
return filestream;
}
/*
* getEnd
*
* @return end
*/
public Date getEnd() {
return end;
}
/*
* getStart
*
* @return start
*/
public Date getStart() {
return start;
}
}
}