Autopsy  4.0
Graphical digital forensics platform for The Sleuth Kit and other tools.
EventAxis.java
Go to the documentation of this file.
1 /*
2  * Autopsy Forensic Browser
3  *
4  * Copyright 2014 Basis Technology Corp.
5  * Contact: carrier <at> sleuthkit <dot> org
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  */
19 package org.sleuthkit.autopsy.timeline.ui.detailview;
20 
21 import java.util.Collections;
22 import java.util.List;
23 import javafx.scene.chart.Axis;
24 import javafx.scene.chart.XYChart;
26 
31 class EventAxis extends Axis<EventStripe> {
32 
33  @Override
34  public double getDisplayPosition(EventStripe value) {
35  throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
36  }
37 
38  @Override
39  public EventStripe getValueForDisplay(double displayPosition) {
40  throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
41  }
42 
43  @Override
44  public double getZeroPosition() {
45  return 0;
46  }
47 
48  @Override
49  public boolean isValueOnAxis(EventStripe value) {
50  throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
51  }
52 
53  @Override
54  public double toNumericValue(EventStripe value) {
55  throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
56  }
57 
58  @Override
59  public EventStripe toRealValue(double value) {
60  throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
61  }
62 
63  @Override
64  protected Object autoRange(double length) {
65  return null;
66  }
67 
68  @Override
69  protected List<EventStripe> calculateTickValues(double length, Object range) {
70  return Collections.emptyList();
71  }
72 
73  @Override
74  protected Object getRange() {
75  return new Object();
76  }
77 
78  @Override
79  protected String getTickMarkLabel(EventStripe value) {
80  throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
81  }
82 
83  @Override
84  protected void setRange(Object range, boolean animate) {
85 // throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
86  }
87 
88 }

Copyright © 2012-2015 Basis Technology. Generated on: Wed Apr 6 2016
This work is licensed under a Creative Commons Attribution-Share Alike 3.0 United States License.