Package org.sleuthkit.autopsy.corecomponentinterfaces

Examples of org.sleuthkit.autopsy.corecomponentinterfaces.DataSourceProcessor


     */
    protected DataSourceProcessor getCurrentDSProcessor() {
        // get the type of the currently selected panel and then look up
        // the correspodning DS Handler in the map
        String dsType = (String) typeComboBox.getSelectedItem();
        DataSourceProcessor dsProcessor = datasourceProcessorsMap.get(dsType);

        return dsProcessor;

    }
View Full Code Here

TOP

Related Classes of org.sleuthkit.autopsy.corecomponentinterfaces.DataSourceProcessor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.