Package org.sleuthkit.autopsy.datamodel

Examples of org.sleuthkit.autopsy.datamodel.ArtifactStringContent


            }
           
            // Build the new artifact strings cache.
            ArrayList<ArtifactStringContent> artifactStrings = new ArrayList<>();
            for (BlackboardArtifact artifact : artifacts) {
                artifactStrings.add(new ArtifactStringContent(artifact));
            }

            // If the node has an underlying blackboard artifact, show it. If not,
            // show the first artifact.
            int index = 0;
View Full Code Here


        @Override
        protected ViewUpdate doInBackground() {
            // Get the artifact string to display from the cache. Note that one must be subtracted from the
            // page index to get the corresponding artifact string index.
            List<ArtifactStringContent> artifactStrings = getArtifactContentStrings();
            ArtifactStringContent artifactStringContent = artifactStrings.get(pageIndex - 1);

            // The getString() method of ArtifactStringContent does a lazy fetch of the attributes of the
            // correspoding artifact and represents them as HTML.
            String artifactString = artifactStringContent.getString();
           
            // It may take a considerable amount of time to fetch the attributes of the selected artifact and render them
            // as HTML, so check for cancellation.
            if (isCancelled()) {
                return null;
View Full Code Here

TOP

Related Classes of org.sleuthkit.autopsy.datamodel.ArtifactStringContent

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.