mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-17 18:17:43 +00:00
3849 update copyright and comments
This commit is contained in:
parent
28a011c3e9
commit
8d70a55315
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* Autopsy Forensic Browser
|
||||
*
|
||||
* Copyright 2012-2019 Basis Technology Corp.
|
||||
* Copyright 2012-2021 Basis Technology Corp.
|
||||
* Contact: carrier <at> sleuthkit <dot> org
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
|
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* Autopsy Forensic Browser
|
||||
*
|
||||
* Copyright 2017-2019 Basis Technology Corp.
|
||||
* Copyright 2017-2021 Basis Technology Corp.
|
||||
* Contact: carrier <at> sleuthkit <dot> org
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
|
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* Autopsy Forensic Browser
|
||||
*
|
||||
* Copyright 2011 Basis Technology Corp.
|
||||
* Copyright 2011-2021 Basis Technology Corp.
|
||||
* Contact: carrier <at> sleuthkit <dot> org
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
|
@ -48,6 +48,11 @@ class DataSourceFilter extends AbstractFileSearchFilter<DataSourcePanel> {
|
||||
return this.getComponent().isSelected();
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the data source filter to select the specified data source initially.
|
||||
*
|
||||
* @param dataSourceId - The data source to select.
|
||||
*/
|
||||
void setSelectedDataSource(long dataSourceId) {
|
||||
this.getComponent().setDataSourceSelected(dataSourceId);
|
||||
}
|
||||
|
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* Autopsy Forensic Browser
|
||||
*
|
||||
* Copyright 2011-2018 Basis Technology Corp.
|
||||
* Copyright 2011-2021 Basis Technology Corp.
|
||||
* Contact: carrier <at> sleuthkit <dot> org
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
@ -48,6 +48,11 @@ final class FileSearchDialog extends javax.swing.JDialog {
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the data source filter to select the specified data source initially.
|
||||
*
|
||||
* @param dataSourceId - The data source to select.
|
||||
*/
|
||||
void setSelectedDataSourceFilter(long dataSourceId) {
|
||||
fileSearchPanel1.setDataSourceFilter(dataSourceId);
|
||||
}
|
||||
@ -83,4 +88,3 @@ final class FileSearchDialog extends javax.swing.JDialog {
|
||||
private org.sleuthkit.autopsy.filesearch.FileSearchPanel fileSearchPanel1;
|
||||
// End of variables declaration//GEN-END:variables
|
||||
}
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* Autopsy Forensic Browser
|
||||
*
|
||||
* Copyright 2011-2019 Basis Technology Corp.
|
||||
* Copyright 2011-2021 Basis Technology Corp.
|
||||
* Contact: carrier <at> sleuthkit <dot> org
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
@ -146,6 +146,11 @@ class FileSearchPanel extends javax.swing.JPanel {
|
||||
searchButton.setEnabled(isValidSearch());
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the data source filter to select the specified data source initially.
|
||||
*
|
||||
* @param dataSourceId - The data source to select.
|
||||
*/
|
||||
void setDataSourceFilter(long dataSourceId) {
|
||||
dataSourceFilter.setSelectedDataSource(dataSourceId);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user