Docs fix for AddImageTask

This commit is contained in:
Richard Cordovano 2016-01-26 11:20:58 -05:00
parent 2bf0c91929
commit 50d08d3c3c

View File

@ -114,8 +114,7 @@ class AddImageTask implements Runnable {
} }
/** /**
* Runs the data source processor in a separate thread without requiring use * Constructs a runnable task that adds an image to the case database.
* the configuration panel.
* *
* @param dataSourceId An ASCII-printable identifier for the data * @param dataSourceId An ASCII-printable identifier for the data
* source that is unique across multiple cases * source that is unique across multiple cases
@ -130,19 +129,6 @@ class AddImageTask implements Runnable {
* processing. * processing.
* @param cbObj Callback to call when processing is done. * @param cbObj Callback to call when processing is done.
*/ */
/**
* Constructs a runnable task that adds an image to the case database.
*
* @param imagePath Path to the image file.
* @param timeZone The time zone to use when processing dates
* and times for the image, obtained from
* java.util.TimeZone.getID.
* @param ignoreFatOrphanFiles Whether to parse orphans if the image has a
* FAT filesystem.
* @param monitor Progress monitor to report progress during
* processing.
* @param cbObj Callback to call when processing is done.
*/
AddImageTask(String dataSourceId, String imagePath, String timeZone, boolean ignoreFatOrphanFiles, DataSourceProcessorProgressMonitor monitor, DataSourceProcessorCallback cbObj) { AddImageTask(String dataSourceId, String imagePath, String timeZone, boolean ignoreFatOrphanFiles, DataSourceProcessorProgressMonitor monitor, DataSourceProcessorCallback cbObj) {
currentCase = Case.getCurrentCase(); currentCase = Case.getCurrentCase();
this.dataSourceId = dataSourceId; this.dataSourceId = dataSourceId;