Skip to content
Snippets Groups Projects
Commit d924c215 authored by Brian Carrier's avatar Brian Carrier
Browse files

comment updates to java

parent 6daca4a5
No related branches found
No related tags found
No related merge requests found
...@@ -2,3 +2,4 @@ Changes to make once we are ready to do a backwards incompatible change. ...@@ -2,3 +2,4 @@ Changes to make once we are ready to do a backwards incompatible change.
- TSK_SERVICE_ACCOUNT to TSK_ACCOUNT - TSK_SERVICE_ACCOUNT to TSK_ACCOUNT
- HashDB to use new TSK_BASE_HASHDB enum instead of its own ENUM - HashDB to use new TSK_BASE_HASHDB enum instead of its own ENUM
- Java SLeuthkitCase.addArtifactType shoudl return different if artifact already exists or getArtifactId should.... - Java SLeuthkitCase.addArtifactType shoudl return different if artifact already exists or getArtifactId should....
- Java SleuthkitCase.findFilesWhere should return AbstractFile liek findFiles
...@@ -2716,8 +2716,8 @@ else if (dataSource instanceof VirtualDirectory) { ...@@ -2716,8 +2716,8 @@ else if (dataSource instanceof VirtualDirectory) {
/** /**
* @param dataSource the dataSource (Image, parent-less VirtualDirectory) to search for the given file name * @param dataSource the dataSource (Image, parent-less VirtualDirectory) to search for the given file name
* @param fileName the name of the file or directory to match (case * @param fileName Pattern of the name of the file or directory to match (case
* insensitive) * insensitive, used in LIKE SQL statement).
* @return a list of AbstractFile for files/directories whose name matches the * @return a list of AbstractFile for files/directories whose name matches the
* given fileName * given fileName
* @throws TskCoreException thrown if check failed * @throws TskCoreException thrown if check failed
...@@ -2780,10 +2780,10 @@ public List<AbstractFile> findFiles(Content dataSource, String fileName) throws ...@@ -2780,10 +2780,10 @@ public List<AbstractFile> findFiles(Content dataSource, String fileName) throws
/** /**
* @param dataSource the dataSource (Image, parent-less VirtualDirectory) to search for the given file name * @param dataSource the dataSource (Image, parent-less VirtualDirectory) to search for the given file name
* @param fileName the name of the file or directory to match (case * @param fileName Pattern of the name of the file or directory to match (case
* insensitive) * insensitive, used in LIKE SQL statement).
* @param dirName the name of a parent directory of fileName (case * @param dirName Pattern of the name of a parent directory of fileName (case
* insensitive) * insensitive, used in LIKE SQL statement)
* @return a list of AbstractFile for files/directories whose name matches * @return a list of AbstractFile for files/directories whose name matches
* fileName and whose parent directory contains dirName. * fileName and whose parent directory contains dirName.
*/ */
...@@ -3547,9 +3547,9 @@ public LocalFile addLocalFile(String fileName, String localPath, ...@@ -3547,9 +3547,9 @@ public LocalFile addLocalFile(String fileName, String localPath,
/** /**
* Find all files in the data source, by name and parent * Find all files in the data source, by name and parent
* @param dataSource the dataSource (Image, parent-less VirtualDirectory) to search for the given file name * @param dataSource the dataSource (Image, parent-less VirtualDirectory) to search for the given file name
* @param fileName the name of the file or directory to match (case * @param fileName Pattern of the name of the file or directory to match (case
* insensitive) * insensitive, used in LIKE SQL statement).
* @param parentFile * @param parentFile Object for parent file/directory to find children in
* @return a list of AbstractFile for files/directories whose name matches * @return a list of AbstractFile for files/directories whose name matches
* fileName and that were inside a directory described by parentFile. * fileName and that were inside a directory described by parentFile.
*/ */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment