19 package org.sleuthkit.autopsy.timeline.ui.detailview;
21 import java.util.Collections;
22 import java.util.List;
23 import javafx.scene.chart.Axis;
24 import javafx.scene.chart.XYChart;
31 class EventAxis
extends Axis<EventStripe> {
34 public double getDisplayPosition(EventStripe value) {
35 throw new UnsupportedOperationException(
"Not supported yet.");
39 public EventStripe getValueForDisplay(
double displayPosition) {
40 throw new UnsupportedOperationException(
"Not supported yet.");
44 public double getZeroPosition() {
49 public boolean isValueOnAxis(EventStripe value) {
50 throw new UnsupportedOperationException(
"Not supported yet.");
54 public double toNumericValue(EventStripe value) {
55 throw new UnsupportedOperationException(
"Not supported yet.");
59 public EventStripe toRealValue(
double value) {
60 throw new UnsupportedOperationException(
"Not supported yet.");
64 protected Object autoRange(
double length) {
69 protected List<EventStripe> calculateTickValues(
double length, Object range) {
70 return Collections.emptyList();
74 protected Object getRange() {
79 protected String getTickMarkLabel(EventStripe value) {
80 throw new UnsupportedOperationException(
"Not supported yet.");
84 protected void setRange(Object range,
boolean animate) {