@FXML
 void up(ActionEvent event) {
   editor.up(this);
 }
 @FXML
 void down(ActionEvent event) {
   editor.down(this);
 }
 @FXML
 void remove(ActionEvent event) {
   editor.remove(this);
 }