Package org.sleuthkit.autopsy.corecomponentinterfaces

Examples of org.sleuthkit.autopsy.corecomponentinterfaces.DataResultViewer


            // Find all DataResultViewer service providers and add them to the tabbed pane.
            for (DataResultViewer factory : Lookup.getDefault().lookupAll(DataResultViewer.class)) {
                // @@@ Revist this isMain condition, it may be obsolete. If not,
                // document the intent of DataResultViewer.createInstance() in the
                // DataResultViewer interface defintion.
                DataResultViewer drv;
                if (isMain) {
                    //for main window, use the instance in the lookup
                    drv = factory;
                }
                else {
View Full Code Here

TOP

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

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.