Go to the documentation of this file.
19package org.sleuthkit.autopsy.timeline.ui.detailview;
21import java.util.Collections;
23import javafx.scene.chart.Axis;
24import javafx.scene.chart.XYChart;
25import org.sleuthkit.autopsy.timeline.ui.detailview.datamodel.DetailViewEvent;
33 EventAxis(String label) {
38 public double getDisplayPosition(Type value) {
39 throw new UnsupportedOperationException(
"Not supported yet.");
43 public Type getValueForDisplay(
double displayPosition) {
44 throw new UnsupportedOperationException(
"Not supported yet.");
48 public double getZeroPosition() {
53 public boolean isValueOnAxis(Type value) {
54 throw new UnsupportedOperationException(
"Not supported yet.");
58 public double toNumericValue(Type value) {
59 throw new UnsupportedOperationException(
"Not supported yet.");
63 public Type toRealValue(
double value) {
64 throw new UnsupportedOperationException(
"Not supported yet.");
68 protected Object autoRange(
double length) {
73 protected List<Type> calculateTickValues(
double length, Object range) {
74 return Collections.emptyList();
78 protected Object getRange() {
83 protected String getTickMarkLabel(Type value) {
84 throw new UnsupportedOperationException(
"Not supported yet.");
88 protected void setRange(Object range,
boolean animate) {
Copyright © 2012-2024 Sleuth Kit Labs. Generated on:
This work is licensed under a
Creative Commons Attribution-Share Alike 3.0 United States License.