added some JavaDoc comments

Former-commit-id: 8ae8744c4f59f1f2e8a932485b969575b533fc42
This commit is contained in:
Jeremy Long
2013-12-07 13:29:28 -05:00
parent 6aee9ce92e
commit d5ac67071f

View File

@@ -68,8 +68,17 @@ public class ProcessTask implements Callable<ProcessTask> {
public void setException(UpdateException exception) {
this.exception = exception;
}
/**
* A reference to the CveDB.
*/
private final CveDB cveDB;
/**
* A reference to the callable download task.
*/
private final CallableDownloadTask filePair;
/**
* A reference to the properties.
*/
private final DataStoreMetaInfo properties;
public ProcessTask(final CveDB cveDB, final DataStoreMetaInfo properties, final CallableDownloadTask filePair) {