19 package org.sleuthkit.autopsy.timeline.ui;
 
   21 import javafx.fxml.FXML;
 
   22 import javafx.scene.control.Button;
 
   23 import javafx.scene.control.Label;
 
   24 import javafx.scene.control.ToolBar;
 
   25 import org.controlsfx.control.action.ActionUtils;
 
   26 import org.openide.util.NbBundle;
 
   57     @NbBundle.Messages({
"HistoryToolBar.historyLabel.text=History"})
 
   59         assert historyLabel != null : 
"fx:id=\"historyLabel\" was not injected: check your FXML file 'HistoryToolBar.fxml'.";
 
   60         assert backButton != null : 
"fx:id=\"backButton\" was not injected: check your FXML file 'HistoryToolBar.fxml'.";
 
   61         assert forwardButton != null : 
"fx:id=\"forwardButton\" was not injected: check your FXML file 'HistoryToolBar.fxml'.";
 
   63         historyLabel.setText(Bundle.HistoryToolBar_historyLabel_text());
 
   65         ActionUtils.configureButton(
new Back(controller), backButton);
 
   66         ActionUtils.configureButton(
new Forward(controller), forwardButton);
 
final TimeLineController controller
HistoryToolBar(TimeLineController controller)
static void construct(Node node, String fxmlFileName)