Ejemplo n.º 1
0
 @NbBundle.Messages({
   "ZoomIn.longText=Zoom in to view about half as much time.",
   "ZoomIn.action.text=Zoom in"
 })
 public ZoomIn(TimeLineController controller) {
   super(Bundle.ZoomIn_action_text());
   setLongText(Bundle.ZoomIn_longText());
   setGraphic(new ImageView(MAGNIFIER_IN));
   setEventHandler(
       actionEvent -> {
         controller.pushZoomInTime();
       });
 }