Added ConfigData into javadocs
This commit is contained in:
parent
96c903ed15
commit
708cedf7b4
@ -8,20 +8,42 @@ public class ConfigData {
|
|||||||
private Date end;
|
private Date end;
|
||||||
private InputStream filestream;
|
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) {
|
public ConfigData(Date start, Date end, InputStream filestream) {
|
||||||
this.start = start;
|
this.start = start;
|
||||||
this.end = end;
|
this.end = end;
|
||||||
this.filestream = filestream;
|
this.filestream = filestream;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* getFilestream
|
||||||
|
*
|
||||||
|
* @return filestream
|
||||||
|
*/
|
||||||
public InputStream getFilestream() {
|
public InputStream getFilestream() {
|
||||||
return filestream;
|
return filestream;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* getEnd
|
||||||
|
*
|
||||||
|
* @return end
|
||||||
|
*/
|
||||||
public Date getEnd() {
|
public Date getEnd() {
|
||||||
return end;
|
return end;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* getStart
|
||||||
|
*
|
||||||
|
* @return start
|
||||||
|
*/
|
||||||
public Date getStart() {
|
public Date getStart() {
|
||||||
return start;
|
return start;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user