diff --git a/Core/src/org/sleuthkit/autopsy/casemodule/AddImageWizardDataSourceSettingsVisual.java b/Core/src/org/sleuthkit/autopsy/casemodule/AddImageWizardDataSourceSettingsVisual.java index 287bd6c203..4f4f374c70 100644 --- a/Core/src/org/sleuthkit/autopsy/casemodule/AddImageWizardDataSourceSettingsVisual.java +++ b/Core/src/org/sleuthkit/autopsy/casemodule/AddImageWizardDataSourceSettingsVisual.java @@ -34,7 +34,6 @@ import org.openide.util.NbBundle; import org.sleuthkit.autopsy.corecomponentinterfaces.DataSourceProcessor; import org.sleuthkit.autopsy.coreutils.Logger; - /** * visual component for the first panel of add image wizard. Allows the user to * choose the data source type and then select the data source @@ -65,7 +64,8 @@ final class AddImageWizardDataSourceSettingsVisual extends JPanel { } /** - * WJS-TODO + * Populate the map of DataSourceProcessors which so they can be retrieved + * by name. */ private void discoverDataSourceProcessors() { for (DataSourceProcessor dsProcessor : Lookup.getDefault().lookupAll(DataSourceProcessor.class)) { @@ -76,9 +76,9 @@ final class AddImageWizardDataSourceSettingsVisual extends JPanel { } } } - + /** - * WJS-TODO + * WJS-TODO */ void dspSelectionChanged(String dsType) { // update the current panel to selection diff --git a/Core/src/org/sleuthkit/autopsy/casemodule/AddImageWizardIterator.java b/Core/src/org/sleuthkit/autopsy/casemodule/AddImageWizardIterator.java index 74b4f577ea..3558ffe83b 100644 --- a/Core/src/org/sleuthkit/autopsy/casemodule/AddImageWizardIterator.java +++ b/Core/src/org/sleuthkit/autopsy/casemodule/AddImageWizardIterator.java @@ -54,11 +54,11 @@ class AddImageWizardIterator implements WizardDescriptor.Iterator getPanels() { if (panels == null) { panels = new ArrayList<>(); - SelectDataSourceProcessorPanel dspSelection = new SelectDataSourceProcessorPanel(); + AddImageWizardSelectDspPanel dspSelection = new AddImageWizardSelectDspPanel(); panels.add(dspSelection); AddImageWizardAddingProgressPanel progressPanel = new AddImageWizardAddingProgressPanel(); - - AddImageWizardChooseDataSourcePanel dsPanel = new AddImageWizardChooseDataSourcePanel(); + + AddImageWizardDataSourceSettingsPanel dsPanel = new AddImageWizardDataSourceSettingsPanel(); AddImageWizardIngestConfigPanel ingestConfigPanel = new AddImageWizardIngestConfigPanel(dsPanel, action, progressPanel); panels.add(dsPanel); List profiles = IngestProfiles.getIngestProfiles(); @@ -162,7 +162,7 @@ class AddImageWizardIterator implements WizardDescriptor.Iterator sleuthkit org + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package org.sleuthkit.autopsy.casemodule; @@ -18,10 +31,12 @@ import org.sleuthkit.autopsy.coreutils.ModuleSettings; import org.sleuthkit.autopsy.ingest.runIngestModuleWizard.ShortcutWizardDescriptorPanel; /** - * Create a wizard panel which contains a panel allowing the selection of the DataSourceProcessor + * Create a wizard panel which contains a panel allowing the selection of the + * DataSourceProcessor */ class AddImageWizardSelectDspPanel extends ShortcutWizardDescriptorPanel implements PropertyChangeListener { - @NbBundle.Messages("SelectDataSourceProcessorPanel.name.text=Select Type of Data") + + @NbBundle.Messages("SelectDataSourceProcessorPanel.name.text=Select Type of Data") private AddImageWizardSelectDspVisual component; private static final String LAST_DSP_PROPERTIES_FILE = "LastDSPUsed"; private static final String LAST_DSP_USED_KEY = "Last_DSP_Used";