Go to the documentation of this file.
19package org.sleuthkit.autopsy.datamodel;
21import java.util.Objects;
22import org.sleuthkit.datamodel.DataSource;
37 DataSource getDataSource() {
38 return this.dataSource;
42 public <T> T accept(AutopsyItemVisitor<T> visitor) {
43 return visitor.visit(
this);
52 if (getClass() != obj.getClass()) {
56 return this.dataSource.getId() == other.getDataSource().getId();
62 hash = 17 * hash + Objects.hashCode(this.dataSource);
boolean equals(Object obj)
DataSourceGrouping(DataSource dataSource)
final DataSource dataSource
Copyright © 2012-2024 Sleuth Kit Labs. Generated on:
This work is licensed under a
Creative Commons Attribution-Share Alike 3.0 United States License.