Package org.sleuthkit.datamodel.SleuthkitCase

Examples of org.sleuthkit.datamodel.SleuthkitCase.ObjectInfo


  }

  @Override
  public synchronized Content getParent() throws TskCoreException {
    if (parent == null) {
      ObjectInfo parentInfo = null;
      try {
        parentInfo = db.getParentInfo(this);
      } catch (TskCoreException ex) {
        // there is not parent; not an error if we've got a data source
        return null;
View Full Code Here

TOP

Related Classes of org.sleuthkit.datamodel.SleuthkitCase.ObjectInfo

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.