mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-17 18:17:43 +00:00
make members private
This commit is contained in:
parent
fc9073d23c
commit
7c0f2e8664
@ -113,16 +113,16 @@ public class VisualizationPanel extends BorderPane implements TimeLineView {
|
|||||||
|
|
||||||
//// range slider and histogram componenets
|
//// range slider and histogram componenets
|
||||||
@FXML
|
@FXML
|
||||||
protected HBox histogramBox;
|
private HBox histogramBox;
|
||||||
|
|
||||||
@FXML
|
@FXML
|
||||||
protected StackPane rangeHistogramStack;
|
private StackPane rangeHistogramStack;
|
||||||
|
|
||||||
private final RangeSlider rangeSlider = new RangeSlider(0, 1.0, .25, .75);
|
private final RangeSlider rangeSlider = new RangeSlider(0, 1.0, .25, .75);
|
||||||
|
|
||||||
//// time range selection components
|
//// time range selection components
|
||||||
@FXML
|
@FXML
|
||||||
protected MenuButton zoomMenuButton;
|
private MenuButton zoomMenuButton;
|
||||||
|
|
||||||
@FXML
|
@FXML
|
||||||
private Separator rightSeperator;
|
private Separator rightSeperator;
|
||||||
@ -131,26 +131,26 @@ public class VisualizationPanel extends BorderPane implements TimeLineView {
|
|||||||
private Separator leftSeperator;
|
private Separator leftSeperator;
|
||||||
|
|
||||||
@FXML
|
@FXML
|
||||||
protected Button zoomOutButton;
|
private Button zoomOutButton;
|
||||||
|
|
||||||
@FXML
|
@FXML
|
||||||
protected Button zoomInButton;
|
private Button zoomInButton;
|
||||||
|
|
||||||
@FXML
|
@FXML
|
||||||
protected LocalDateTimeTextField startPicker;
|
private LocalDateTimeTextField startPicker;
|
||||||
|
|
||||||
@FXML
|
@FXML
|
||||||
protected LocalDateTimeTextField endPicker;
|
private LocalDateTimeTextField endPicker;
|
||||||
|
|
||||||
//// replacemetn axis label componenets
|
//// replacemetn axis label componenets
|
||||||
@FXML
|
@FXML
|
||||||
protected Pane partPane;
|
private Pane partPane;
|
||||||
|
|
||||||
@FXML
|
@FXML
|
||||||
protected Pane contextPane;
|
private Pane contextPane;
|
||||||
|
|
||||||
@FXML
|
@FXML
|
||||||
protected Region spacer;
|
private Region spacer;
|
||||||
|
|
||||||
//// header toolbar componenets
|
//// header toolbar componenets
|
||||||
@FXML
|
@FXML
|
||||||
@ -174,9 +174,9 @@ public class VisualizationPanel extends BorderPane implements TimeLineView {
|
|||||||
|
|
||||||
private final NotificationPane notificationPane = new NotificationPane();
|
private final NotificationPane notificationPane = new NotificationPane();
|
||||||
|
|
||||||
protected TimeLineController controller;
|
private TimeLineController controller;
|
||||||
|
|
||||||
protected FilteredEventsModel filteredEvents;
|
private FilteredEventsModel filteredEvents;
|
||||||
|
|
||||||
private final ChangeListener<Object> rangeSliderListener
|
private final ChangeListener<Object> rangeSliderListener
|
||||||
= (observable1, oldValue, newValue) -> {
|
= (observable1, oldValue, newValue) -> {
|
||||||
@ -361,7 +361,7 @@ public class VisualizationPanel extends BorderPane implements TimeLineView {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
synchronized void setVisualization(final AbstractVisualization<?, ?, ?, ?> newViz) {
|
private synchronized void setVisualization(final AbstractVisualization<?, ?, ?, ?> newViz) {
|
||||||
Platform.runLater(() -> {
|
Platform.runLater(() -> {
|
||||||
synchronized (VisualizationPanel.this) {
|
synchronized (VisualizationPanel.this) {
|
||||||
if (visualization != null) {
|
if (visualization != null) {
|
||||||
@ -549,7 +549,7 @@ public class VisualizationPanel extends BorderPane implements TimeLineView {
|
|||||||
@FXML
|
@FXML
|
||||||
private Label noEventsDialogLabel;
|
private Label noEventsDialogLabel;
|
||||||
|
|
||||||
public NoEventsDialog(Runnable closeCallback) {
|
private NoEventsDialog(Runnable closeCallback) {
|
||||||
this.closeCallback = closeCallback;
|
this.closeCallback = closeCallback;
|
||||||
FXMLConstructor.construct(this, "NoEventsDialog.fxml"); // NON-NLS
|
FXMLConstructor.construct(this, "NoEventsDialog.fxml"); // NON-NLS
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user