Autopsy
4.12.0
Graphical digital forensics platform for The Sleuth Kit and other tools.
|
Public Member Functions | |
ZoomState (Interval timeRange, TimelineEventType.TypeLevel zoomLevel, RootFilterState filter, TimelineEvent.DescriptionLevel descrLOD) | |
boolean | equals (Object obj) |
TimelineEvent.DescriptionLevel | getDescriptionLOD () |
RootFilterState | getFilterState () |
Interval | getTimeRange () |
TimelineEventType.TypeLevel | getTypeZoomLevel () |
boolean | hasDescrLOD (TimelineEvent.DescriptionLevel newLOD) |
boolean | hasFilterState (RootFilterState filterSet) |
int | hashCode () |
boolean | hasTimeRange (Interval timeRange) |
boolean | hasTypeZoomLevel (TimelineEventType.TypeLevel typeZoom) |
String | toString () |
ZoomState | withDescrLOD (TimelineEvent.DescriptionLevel descrLOD) |
ZoomState | withFilterState (RootFilterState filter) |
ZoomState | withTimeAndType (Interval timeRange, TimelineEventType.TypeLevel zoomLevel) |
ZoomState | withTimeRange (Interval timeRange) |
ZoomState | withTypeZoomLevel (TimelineEventType.TypeLevel zoomLevel) |
Private Attributes | |
final TimelineEvent.DescriptionLevel | descrLOD |
final RootFilterState | filter |
final Interval | timeRange |
final TimelineEventType.TypeLevel | typeZoomLevel |
This class encapsulates all the zoom(and filter) parameters into one object for passing around and as a memento of the zoom/filter state.
Definition at line 31 of file ZoomState.java.
org.sleuthkit.autopsy.timeline.zooming.ZoomState.ZoomState | ( | Interval | timeRange, |
TimelineEventType.TypeLevel | zoomLevel, | ||
RootFilterState | filter, | ||
TimelineEvent.DescriptionLevel | descrLOD | ||
) |
Definition at line 57 of file ZoomState.java.
References org.sleuthkit.autopsy.timeline.zooming.ZoomState.descrLOD, org.sleuthkit.autopsy.timeline.zooming.ZoomState.filter, org.sleuthkit.autopsy.timeline.zooming.ZoomState.timeRange, and org.sleuthkit.autopsy.timeline.zooming.ZoomState.typeZoomLevel.
Referenced by org.sleuthkit.autopsy.timeline.zooming.ZoomState.equals(), org.sleuthkit.autopsy.timeline.zooming.ZoomState.withDescrLOD(), org.sleuthkit.autopsy.timeline.zooming.ZoomState.withFilterState(), org.sleuthkit.autopsy.timeline.zooming.ZoomState.withTimeAndType(), org.sleuthkit.autopsy.timeline.zooming.ZoomState.withTimeRange(), and org.sleuthkit.autopsy.timeline.zooming.ZoomState.withTypeZoomLevel().
boolean org.sleuthkit.autopsy.timeline.zooming.ZoomState.equals | ( | Object | obj | ) |
Definition at line 113 of file ZoomState.java.
References org.sleuthkit.autopsy.timeline.zooming.ZoomState.descrLOD, org.sleuthkit.autopsy.timeline.ui.filtering.datamodel.RootFilterState.equals(), org.sleuthkit.autopsy.timeline.zooming.ZoomState.filter, org.sleuthkit.autopsy.timeline.zooming.ZoomState.timeRange, org.sleuthkit.autopsy.timeline.zooming.ZoomState.typeZoomLevel, and org.sleuthkit.autopsy.timeline.zooming.ZoomState.ZoomState().
TimelineEvent.DescriptionLevel org.sleuthkit.autopsy.timeline.zooming.ZoomState.getDescriptionLOD | ( | ) |
Definition at line 53 of file ZoomState.java.
References org.sleuthkit.autopsy.timeline.zooming.ZoomState.descrLOD.
Referenced by org.sleuthkit.autopsy.timeline.FilteredEventsModel.FilteredEventsModel(), and org.sleuthkit.autopsy.timeline.FilteredEventsModel.getDescriptionLOD().
RootFilterState org.sleuthkit.autopsy.timeline.zooming.ZoomState.getFilterState | ( | ) |
Definition at line 49 of file ZoomState.java.
References org.sleuthkit.autopsy.timeline.zooming.ZoomState.filter.
Referenced by org.sleuthkit.autopsy.timeline.FilteredEventsModel.FilteredEventsModel(), and org.sleuthkit.autopsy.timeline.FilteredEventsModel.getFilterState().
Interval org.sleuthkit.autopsy.timeline.zooming.ZoomState.getTimeRange | ( | ) |
Definition at line 41 of file ZoomState.java.
References org.sleuthkit.autopsy.timeline.zooming.ZoomState.timeRange.
Referenced by org.sleuthkit.autopsy.timeline.FilteredEventsModel.FilteredEventsModel(), org.sleuthkit.autopsy.timeline.FilteredEventsModel.getTimeRange(), and org.sleuthkit.autopsy.timeline.snapshot.SnapShotReportWriter.writeSnapShotHTMLFile().
TimelineEventType.TypeLevel org.sleuthkit.autopsy.timeline.zooming.ZoomState.getTypeZoomLevel | ( | ) |
Definition at line 45 of file ZoomState.java.
References org.sleuthkit.autopsy.timeline.zooming.ZoomState.typeZoomLevel.
Referenced by org.sleuthkit.autopsy.timeline.FilteredEventsModel.FilteredEventsModel(), and org.sleuthkit.autopsy.timeline.FilteredEventsModel.getEventTypeZoom().
boolean org.sleuthkit.autopsy.timeline.zooming.ZoomState.hasDescrLOD | ( | TimelineEvent.DescriptionLevel | newLOD | ) |
Definition at line 96 of file ZoomState.java.
References org.sleuthkit.autopsy.timeline.zooming.ZoomState.descrLOD.
Referenced by org.sleuthkit.autopsy.timeline.TimeLineController.pushDescrLOD().
boolean org.sleuthkit.autopsy.timeline.zooming.ZoomState.hasFilterState | ( | RootFilterState | filterSet | ) |
Definition at line 84 of file ZoomState.java.
References org.sleuthkit.autopsy.timeline.ui.filtering.datamodel.RootFilterState.equals().
Referenced by org.sleuthkit.autopsy.timeline.TimeLineController.pushFilters().
int org.sleuthkit.autopsy.timeline.zooming.ZoomState.hashCode | ( | ) |
Definition at line 101 of file ZoomState.java.
References org.sleuthkit.autopsy.timeline.zooming.ZoomState.descrLOD, and org.sleuthkit.autopsy.timeline.zooming.ZoomState.typeZoomLevel.
boolean org.sleuthkit.autopsy.timeline.zooming.ZoomState.hasTimeRange | ( | Interval | timeRange | ) |
Definition at line 92 of file ZoomState.java.
Referenced by org.sleuthkit.autopsy.timeline.TimeLineController.pushTimeAndType(), and org.sleuthkit.autopsy.timeline.TimeLineController.pushTimeRange().
boolean org.sleuthkit.autopsy.timeline.zooming.ZoomState.hasTypeZoomLevel | ( | TimelineEventType.TypeLevel | typeZoom | ) |
Definition at line 88 of file ZoomState.java.
References org.sleuthkit.autopsy.timeline.zooming.ZoomState.typeZoomLevel.
Referenced by org.sleuthkit.autopsy.timeline.TimeLineController.pushEventTypeZoom(), and org.sleuthkit.autopsy.timeline.TimeLineController.pushTimeAndType().
String org.sleuthkit.autopsy.timeline.zooming.ZoomState.toString | ( | ) |
ZoomState org.sleuthkit.autopsy.timeline.zooming.ZoomState.withDescrLOD | ( | TimelineEvent.DescriptionLevel | descrLOD | ) |
Definition at line 76 of file ZoomState.java.
References org.sleuthkit.autopsy.timeline.zooming.ZoomState.descrLOD, org.sleuthkit.autopsy.timeline.zooming.ZoomState.typeZoomLevel, and org.sleuthkit.autopsy.timeline.zooming.ZoomState.ZoomState().
Referenced by org.sleuthkit.autopsy.timeline.TimeLineController.pushDescrLOD().
ZoomState org.sleuthkit.autopsy.timeline.zooming.ZoomState.withFilterState | ( | RootFilterState | filter | ) |
Definition at line 80 of file ZoomState.java.
References org.sleuthkit.autopsy.timeline.zooming.ZoomState.descrLOD, org.sleuthkit.autopsy.timeline.zooming.ZoomState.typeZoomLevel, and org.sleuthkit.autopsy.timeline.zooming.ZoomState.ZoomState().
Referenced by org.sleuthkit.autopsy.timeline.TimeLineController.pushFilters().
ZoomState org.sleuthkit.autopsy.timeline.zooming.ZoomState.withTimeAndType | ( | Interval | timeRange, |
TimelineEventType.TypeLevel | zoomLevel | ||
) |
Definition at line 64 of file ZoomState.java.
References org.sleuthkit.autopsy.timeline.zooming.ZoomState.descrLOD, and org.sleuthkit.autopsy.timeline.zooming.ZoomState.ZoomState().
Referenced by org.sleuthkit.autopsy.timeline.TimeLineController.pushTimeAndType().
ZoomState org.sleuthkit.autopsy.timeline.zooming.ZoomState.withTimeRange | ( | Interval | timeRange | ) |
Definition at line 72 of file ZoomState.java.
References org.sleuthkit.autopsy.timeline.zooming.ZoomState.descrLOD, org.sleuthkit.autopsy.timeline.zooming.ZoomState.typeZoomLevel, and org.sleuthkit.autopsy.timeline.zooming.ZoomState.ZoomState().
Referenced by org.sleuthkit.autopsy.timeline.TimeLineController.pushTimeAndType(), and org.sleuthkit.autopsy.timeline.TimeLineController.pushTimeRange().
ZoomState org.sleuthkit.autopsy.timeline.zooming.ZoomState.withTypeZoomLevel | ( | TimelineEventType.TypeLevel | zoomLevel | ) |
Definition at line 68 of file ZoomState.java.
References org.sleuthkit.autopsy.timeline.zooming.ZoomState.descrLOD, and org.sleuthkit.autopsy.timeline.zooming.ZoomState.ZoomState().
Referenced by org.sleuthkit.autopsy.timeline.TimeLineController.pushEventTypeZoom(), and org.sleuthkit.autopsy.timeline.TimeLineController.pushTimeAndType().
|
private |
Definition at line 39 of file ZoomState.java.
Referenced by org.sleuthkit.autopsy.timeline.zooming.ZoomState.equals(), org.sleuthkit.autopsy.timeline.zooming.ZoomState.getDescriptionLOD(), org.sleuthkit.autopsy.timeline.zooming.ZoomState.hasDescrLOD(), org.sleuthkit.autopsy.timeline.zooming.ZoomState.hashCode(), org.sleuthkit.autopsy.timeline.zooming.ZoomState.toString(), org.sleuthkit.autopsy.timeline.zooming.ZoomState.withDescrLOD(), org.sleuthkit.autopsy.timeline.zooming.ZoomState.withFilterState(), org.sleuthkit.autopsy.timeline.zooming.ZoomState.withTimeAndType(), org.sleuthkit.autopsy.timeline.zooming.ZoomState.withTimeRange(), org.sleuthkit.autopsy.timeline.zooming.ZoomState.withTypeZoomLevel(), and org.sleuthkit.autopsy.timeline.zooming.ZoomState.ZoomState().
|
private |
Definition at line 37 of file ZoomState.java.
Referenced by org.sleuthkit.autopsy.timeline.zooming.ZoomState.equals(), org.sleuthkit.autopsy.timeline.zooming.ZoomState.getFilterState(), and org.sleuthkit.autopsy.timeline.zooming.ZoomState.ZoomState().
|
private |
Definition at line 33 of file ZoomState.java.
Referenced by org.sleuthkit.autopsy.timeline.zooming.ZoomState.equals(), org.sleuthkit.autopsy.timeline.zooming.ZoomState.getTimeRange(), and org.sleuthkit.autopsy.timeline.zooming.ZoomState.ZoomState().
|
private |
Definition at line 35 of file ZoomState.java.
Referenced by org.sleuthkit.autopsy.timeline.zooming.ZoomState.equals(), org.sleuthkit.autopsy.timeline.zooming.ZoomState.getTypeZoomLevel(), org.sleuthkit.autopsy.timeline.zooming.ZoomState.hashCode(), org.sleuthkit.autopsy.timeline.zooming.ZoomState.hasTypeZoomLevel(), org.sleuthkit.autopsy.timeline.zooming.ZoomState.toString(), org.sleuthkit.autopsy.timeline.zooming.ZoomState.withDescrLOD(), org.sleuthkit.autopsy.timeline.zooming.ZoomState.withFilterState(), org.sleuthkit.autopsy.timeline.zooming.ZoomState.withTimeRange(), and org.sleuthkit.autopsy.timeline.zooming.ZoomState.ZoomState().
Copyright © 2012-2018 Basis Technology. Generated on: Wed Sep 18 2019
This work is licensed under a
Creative Commons Attribution-Share Alike 3.0 United States License.