public void adjustFinderButtons() {
    ICFSecuritySysClusterObj selectedObj = getJavaFXFocusAsSysCluster();
    boolean disableState;
    if (selectedObj == null) {
      disableState = true;
    } else {
      disableState = false;
    }
    boolean inAddMode;
    if (getLeft() == null) {
      inAddMode = false;
    } else {
      inAddMode = true;
      disableState = true;
    }

    if (buttonViewSelected != null) {
      buttonViewSelected.setDisable(disableState);
    }
    if (buttonEditSelected != null) {
      buttonEditSelected.setDisable(disableState);
    }
    if (buttonDeleteSelected != null) {
      buttonDeleteSelected.setDisable(disableState);
    }
    if (buttonAddSysCluster != null) {
      buttonAddSysCluster.setDisable(false);
    }
  }
  public void adjustFinderButtons() {
    ICFAsteriskExtensionsConfObj selectedObj = getJavaFXFocusAsExtensionsConf();
    boolean disableState;
    if (selectedObj == null) {
      disableState = true;
    } else {
      disableState = false;
    }
    boolean inAddMode;
    if (getLeft() == null) {
      inAddMode = false;
    } else {
      inAddMode = true;
      disableState = true;
    }

    if (buttonViewSelected != null) {
      buttonViewSelected.setDisable(disableState);
    }
    if (buttonEditSelected != null) {
      buttonEditSelected.setDisable(disableState);
    }
    if (buttonDeleteSelected != null) {
      buttonDeleteSelected.setDisable(disableState);
    }
    if (buttonAddExtensionsConf != null) {
      buttonAddExtensionsConf.setDisable(false);
    }
  }
  public void adjustListButtons() {
    boolean enableState;
    boolean inEditState;
    boolean allowAdds;
    boolean inAddMode = false;
    ICFAccFeeObj selectedObj = getJavaFXFocusAsFee();
    CFPane.PaneMode mode = getPaneMode();
    if (mode == CFPane.PaneMode.Edit) {
      inEditState = true;
      allowAdds = false;
    } else {
      inEditState = false;
      if (getJavaFXContainer() != null) {
        if (getLeft() != null) {
          allowAdds = false;
          inAddMode = true;
        } else {
          allowAdds = true;
        }
      } else {
        allowAdds = false;
      }
    }
    if (selectedObj == null) {
      enableState = false;
    } else {
      if ((!inAddMode) && (!inEditState)) {
        enableState = true;
      } else {
        enableState = false;
      }
    }

    if (buttonViewSelected != null) {
      buttonViewSelected.setDisable(!enableState);
    }
    if (buttonEditSelected != null) {
      if (inEditState) {
        buttonEditSelected.setDisable(true);
      } else {
        buttonEditSelected.setDisable(!enableState);
      }
    }
    if (buttonDeleteSelected != null) {
      buttonDeleteSelected.setDisable(!enableState);
    }
    if (buttonAddFee != null) {
      buttonAddFee.setDisable(!allowAdds);
    }
  }
 @Override
 public int compare(CFButton lhs, CFButton rhs) {
   if (lhs == null) {
     if (rhs == null) {
       return (0);
     } else {
       return (-1);
     }
   } else if (rhs == null) {
     return (1);
   } else {
     int retval = lhs.getText().compareTo(rhs.getText());
     return (retval);
   }
 }
 public void adjustButtons() {
   CFPane.PaneMode value = getPaneMode();
   if (value == CFPane.PaneMode.View) {
     if (buttonEdit != null) {
       buttonEdit.setDisable(false);
     }
     if (buttonSave != null) {
       buttonSave.setDisable(true);
     }
     if (buttonCancel != null) {
       buttonCancel.setDisable(false);
     }
     if (buttonClose != null) {
       buttonClose.setDisable(true);
     }
   } else if (value == CFPane.PaneMode.Edit) {
     if (buttonEdit != null) {
       buttonEdit.setDisable(true);
     }
     if (buttonSave != null) {
       buttonSave.setDisable(false);
     }
     if (buttonCancel != null) {
       buttonCancel.setDisable(false);
     }
     if (buttonClose != null) {
       buttonClose.setDisable(false);
     }
   } else if (value == CFPane.PaneMode.Add) {
     if (buttonEdit != null) {
       buttonEdit.setDisable(true);
     }
     if (buttonSave != null) {
       buttonSave.setDisable(false);
     }
     if (buttonClose != null) {
       buttonClose.setDisable(false);
     }
     if (buttonCancel != null) {
       buttonCancel.setDisable(false);
     }
   } else {
     if (buttonEdit != null) {
       buttonEdit.setDisable(true);
     }
     if (buttonSave != null) {
       buttonSave.setDisable(true);
     }
     if (buttonCancel != null) {
       buttonCancel.setDisable(false);
     }
     if (buttonClose != null) {
       buttonClose.setDisable(true);
     }
   }
 }
  public CFHBox getHBoxMenu() {
    if (hboxMenu == null) {
      hboxMenu = new CFHBox(10);
      buttonEdit = new CFButton();
      buttonEdit.setMinWidth(200);
      buttonEdit.setText("Edit");
      buttonEdit.setOnAction(
          new EventHandler<ActionEvent>() {
            @Override
            public void handle(ActionEvent e) {
              final String S_ProcName = "handle";
              try {
                if (getJavaFXFocusAsNmTokenType() != null) {
                  if (null == getJavaFXFocusAsNmTokenType().getEdit()) {
                    setPaneMode(CFPane.PaneMode.Edit);
                  } else {
                    throw CFLib.getDefaultExceptionFactory()
                        .newUsageException(
                            getClass(),
                            S_ProcName,
                            "Cannot begin an edit of an object already edited by another window instance");
                  }
                }
              } catch (Throwable t) {
                CFConsole.formException(S_FormName, ((CFButton) e.getSource()).getText(), t);
              }
              adjustButtons();
            }
          });
      hboxMenu.getChildren().add(buttonEdit);

      buttonSave = new CFButton();
      buttonSave.setMinWidth(200);
      buttonSave.setText("Save");
      buttonSave.setOnAction(
          new EventHandler<ActionEvent>() {
            @Override
            public void handle(ActionEvent e) {
              final String S_ProcName = "handle";
              try {
                ICFDbTestNmTokenTypeObj focus = getJavaFXFocusAsNmTokenType();
                if (focus != null) {
                  ICFDbTestNmTokenTypeEditObj editObj =
                      (ICFDbTestNmTokenTypeEditObj) (focus.getEdit());
                  if (editObj == null) {
                    throw CFLib.getDefaultExceptionFactory()
                        .newNullArgumentException(getClass(), S_ProcName, 0, "editObj");
                  }

                  CFPane.PaneMode oldMode = getPaneMode();
                  try {
                    setPaneMode(CFPane.PaneMode.Update);
                    setPaneMode(CFPane.PaneMode.View);
                  } catch (Throwable t) {
                    setPaneMode(oldMode);
                    throw t;
                  }
                } else {
                  throw CFLib.getDefaultExceptionFactory()
                      .newNullArgumentException(getClass(), S_ProcName, 0, "focus");
                }
                dataChanged = true;
              } catch (Throwable t) {
                CFConsole.formException(S_FormName, ((CFButton) e.getSource()).getText(), t);
              }
              adjustButtons();
            }
          });
      hboxMenu.getChildren().add(buttonSave);

      buttonClose = new CFButton();
      buttonClose.setMinWidth(200);
      buttonClose.setText("Close");
      buttonClose.setOnAction(
          new EventHandler<ActionEvent>() {
            @Override
            public void handle(ActionEvent e) {
              final String S_ProcName = "handle";
              try {
                ICFDbTestNmTokenTypeObj focus = getJavaFXFocusAsNmTokenType();
                if (focus != null) {
                  ICFDbTestNmTokenTypeEditObj editObj =
                      (ICFDbTestNmTokenTypeEditObj) (focus.getEdit());
                  if (editObj == null) {
                    throw CFLib.getDefaultExceptionFactory()
                        .newNullArgumentException(getClass(), S_ProcName, 0, "editObj");
                  }

                  CFPane.PaneMode oldMode = getPaneMode();
                  try {
                    setPaneMode(CFPane.PaneMode.Update);
                  } catch (Throwable t) {
                    setPaneMode(oldMode);
                    throw t;
                  }
                  dataChanged = true;
                } else {
                  throw CFLib.getDefaultExceptionFactory()
                      .newNullArgumentException(getClass(), S_ProcName, 0, "focus");
                }
                cfFormManager.closeCurrentForm();
                if (formClosedCallback != null) {
                  focus = getJavaFXFocusAsNmTokenType();
                  formClosedCallback.formClosed(focus);
                }
              } catch (Throwable t) {
                CFConsole.formException(S_FormName, ((CFButton) e.getSource()).getText(), t);
              }
            }
          });
      hboxMenu.getChildren().add(buttonClose);

      buttonCancel = new CFButton();
      buttonCancel.setMinWidth(200);
      buttonCancel.setText("Cancel");
      buttonCancel.setOnAction(
          new EventHandler<ActionEvent>() {
            @Override
            public void handle(ActionEvent e) {
              final String S_ProcName = "handle";
              try {
                ICFDbTestNmTokenTypeObj focus = getJavaFXFocusAsNmTokenType();
                if (focus != null) {
                  ICFDbTestNmTokenTypeEditObj editObj =
                      (ICFDbTestNmTokenTypeEditObj) focus.getEdit();
                  if (editObj != null) {
                    if (editObj.getIsNew()) {
                      editObj.endEdit();
                      setJavaFXFocus(null);
                      setPaneMode(CFPane.PaneMode.Unknown);
                    } else {
                      editObj.endEdit();
                      setPaneMode(CFPane.PaneMode.View);
                    }
                  }
                }
                cfFormManager.closeCurrentForm();
                if (formClosedCallback != null) {
                  if (dataChanged) {
                    focus = getJavaFXFocusAsNmTokenType();
                  } else {
                    focus = null;
                  }
                  formClosedCallback.formClosed(focus);
                }
              } catch (Throwable t) {
                CFConsole.formException(S_FormName, ((CFButton) e.getSource()).getText(), t);
              }
            }
          });
      hboxMenu.getChildren().add(buttonCancel);
    }
    return (hboxMenu);
  }
 public void setPaneMode(CFPane.PaneMode value) {
   CFPane.PaneMode oldMode = getPaneMode();
   if (oldMode == value) {
     return;
   }
   try {
     super.setPaneMode(value);
     ((ICFBamJavaFXInt32ColPaneCommon) javafxAddPane).setPaneMode(value);
   } catch (Throwable t) {
     super.setPaneMode(oldMode);
     ((ICFBamJavaFXInt32ColPaneCommon) javafxAddPane).setPaneMode(oldMode);
     throw t;
   }
   if (value == CFPane.PaneMode.View) {
     if (buttonSave != null) {
       buttonSave.setDisable(true);
     }
     if (buttonCancel != null) {
       buttonCancel.setDisable(false);
     }
     if (buttonClose != null) {
       buttonClose.setDisable(true);
     }
   } else if (value == CFPane.PaneMode.Edit) {
     if (buttonSave != null) {
       buttonSave.setDisable(false);
     }
     if (buttonCancel != null) {
       buttonCancel.setDisable(false);
     }
     if (buttonClose != null) {
       buttonClose.setDisable(false);
     }
   } else if (value == CFPane.PaneMode.Add) {
     if (buttonSave != null) {
       buttonSave.setDisable(false);
     }
     if (buttonCancel != null) {
       buttonCancel.setDisable(false);
     }
     if (buttonClose != null) {
       buttonClose.setDisable(false);
     }
   } else {
     if (buttonSave != null) {
       buttonSave.setDisable(true);
     }
     if (buttonCancel != null) {
       buttonCancel.setDisable(false);
     }
     if (buttonClose != null) {
       buttonClose.setDisable(true);
     }
   }
 }
  public CFHBox getHBoxMenu() {
    if (hboxMenu == null) {
      hboxMenu = new CFHBox(10);
      buttonSave = new CFButton();
      buttonSave.setMinWidth(200);
      buttonSave.setText("Save");
      buttonSave.setOnAction(
          new EventHandler<ActionEvent>() {
            @Override
            public void handle(ActionEvent e) {
              final String S_ProcName = "handle";
              try {
                ICFBamInt32ColObj focus = getJavaFXFocusAsInt32Col();
                if (focus != null) {
                  ICFBamInt32ColEditObj editObj = (ICFBamInt32ColEditObj) (focus.getEdit());
                  if (editObj != null) {
                    setPaneMode(CFPane.PaneMode.Update);
                  } else {
                    throw CFLib.getDefaultExceptionFactory()
                        .newUsageException(
                            getClass(),
                            S_ProcName,
                            "Cannot save an object that isn't being edited");
                  }
                }
                // If an object was added, the focus will change to the persisted instance
                focus = getJavaFXFocusAsInt32Col();
                CFBorderPane frame =
                    javafxSchema
                        .getInt32ColFactory()
                        .newViewEditForm(cfFormManager, focus, formClosedCallback, true);
                ((ICFBamJavaFXInt32ColPaneCommon) frame).setPaneMode(CFPane.PaneMode.View);
                cfFormManager.closeCurrentForm();
                cfFormManager.pushForm(frame);
              } catch (Throwable t) {
                CFConsole.formException(S_FormName, ((CFButton) e.getSource()).getText(), t);
              }
            }
          });
      if (allowSave) {
        hboxMenu.getChildren().add(buttonSave);
      }

      buttonClose = new CFButton();
      buttonClose.setMinWidth(200);
      buttonClose.setText("Close");
      buttonClose.setOnAction(
          new EventHandler<ActionEvent>() {
            @Override
            public void handle(ActionEvent e) {
              final String S_ProcName = "handle";
              try {
                ICFBamInt32ColObj focus = getJavaFXFocusAsInt32Col();
                if (focus != null) {
                  ICFBamInt32ColEditObj editObj = (ICFBamInt32ColEditObj) (focus.getEdit());
                  if (editObj != null) {
                    setPaneMode(CFPane.PaneMode.Update);
                  } else {
                    throw CFLib.getDefaultExceptionFactory()
                        .newUsageException(
                            getClass(),
                            S_ProcName,
                            "Cannot save an object that isn't being edited");
                  }
                }
                // If an object was added, the focus will change to the persisted instance
                focus = getJavaFXFocusAsInt32Col();
                cfFormManager.closeCurrentForm();
                if (formClosedCallback != null) {
                  formClosedCallback.formClosed(focus);
                }
              } catch (Throwable t) {
                CFConsole.formException(S_FormName, ((CFButton) e.getSource()).getText(), t);
              }
            }
          });
      hboxMenu.getChildren().add(buttonClose);

      buttonCancel = new CFButton();
      buttonCancel.setMinWidth(200);
      buttonCancel.setText("Cancel");
      buttonCancel.setOnAction(
          new EventHandler<ActionEvent>() {
            @Override
            public void handle(ActionEvent e) {
              final String S_ProcName = "handle";
              try {
                ICFBamInt32ColObj focus = getJavaFXFocusAsInt32Col();
                if (focus != null) {
                  ICFBamInt32ColEditObj editObj = (ICFBamInt32ColEditObj) focus.getEdit();
                  if (editObj != null) {
                    if (editObj.getIsNew()) {
                      editObj.endEdit();
                      setJavaFXFocus(null);
                      setPaneMode(CFPane.PaneMode.Unknown);
                    } else {
                      editObj.endEdit();
                      setPaneMode(CFPane.PaneMode.View);
                    }
                  }
                }
                cfFormManager.closeCurrentForm();
                if (formClosedCallback != null) {
                  formClosedCallback.formClosed(null);
                }
              } catch (Throwable t) {
                CFConsole.formException(S_FormName, ((CFButton) e.getSource()).getText(), t);
              }
            }
          });
      hboxMenu.getChildren().add(buttonCancel);
    }
    return (hboxMenu);
  }
  public CFHBox getPanelHBoxMenu() {
    if (hboxMenu == null) {
      hboxMenu = new CFHBox(10);
      buttonAddFee = new CFButton();
      buttonAddFee.setMinWidth(200);
      buttonAddFee.setText("Add Fee");
      buttonAddFee.setOnAction(
          new EventHandler<ActionEvent>() {
            @Override
            public void handle(ActionEvent e) {
              final String S_ProcName = "handle";
              try {
                ICFAccSchemaObj schemaObj = (ICFAccSchemaObj) javafxSchema.getSchema();
                ICFAccFeeObj obj = (ICFAccFeeObj) schemaObj.getFeeTableObj().newInstance();
                ICFAccFeeEditObj edit = (ICFAccFeeEditObj) (obj.beginEdit());
                if (edit == null) {
                  throw CFLib.getDefaultExceptionFactory()
                      .newNullArgumentException(getClass(), S_ProcName, 0, "edit");
                }
                ICFSecurityTenantObj secTenant = schemaObj.getSecTenant();
                edit.setRequiredOwnerTenant(secTenant);
                ICFAccAccountObj container = (ICFAccAccountObj) (getJavaFXContainer());
                if (container == null) {
                  throw CFLib.getDefaultExceptionFactory()
                      .newNullArgumentException(getClass(), S_ProcName, 0, "JavaFXContainer");
                }
                edit.setRequiredContainerAccount(container);
                CFBorderPane frame =
                    javafxSchema
                        .getFeeFactory()
                        .newAddForm(cfFormManager, obj, getViewEditClosedCallback(), true);
                ICFAccJavaFXFeePaneCommon jpanelCommon = (ICFAccJavaFXFeePaneCommon) frame;
                jpanelCommon.setJavaFXFocus(obj);
                jpanelCommon.setPaneMode(CFPane.PaneMode.Add);
                cfFormManager.pushForm(frame);
              } catch (Throwable t) {
                CFConsole.formException(S_FormName, ((CFButton) e.getSource()).getText(), t);
              }
            }
          });
      hboxMenu.getChildren().add(buttonAddFee);
      buttonViewSelected = new CFButton();
      buttonViewSelected.setMinWidth(200);
      buttonViewSelected.setText("View Selected");
      buttonViewSelected.setOnAction(
          new EventHandler<ActionEvent>() {
            @Override
            public void handle(ActionEvent e) {
              final String S_ProcName = "handle";
              try {
                ICFAccSchemaObj schemaObj = (ICFAccSchemaObj) javafxSchema.getSchema();
                if (schemaObj == null) {
                  throw CFLib.getDefaultExceptionFactory()
                      .newNullArgumentException(getClass(), S_ProcName, 0, "schemaObj");
                }
                ICFAccFeeObj selectedInstance = getJavaFXFocusAsFee();
                if (selectedInstance != null) {
                  String classCode = selectedInstance.getClassCode();
                  if ("FEE".equals(classCode)) {
                    CFBorderPane frame =
                        javafxSchema
                            .getFeeFactory()
                            .newViewEditForm(
                                cfFormManager,
                                selectedInstance,
                                getViewEditClosedCallback(),
                                false);
                    ((ICFAccJavaFXFeePaneCommon) frame).setPaneMode(CFPane.PaneMode.View);
                    cfFormManager.pushForm(frame);
                  } else {
                    throw CFLib.getDefaultExceptionFactory()
                        .newUnsupportedClassException(
                            getClass(),
                            S_ProcName,
                            "selectedInstance",
                            selectedInstance,
                            "ICFAccFeeObj");
                  }
                }
              } catch (Throwable t) {
                CFConsole.formException(S_FormName, ((CFButton) e.getSource()).getText(), t);
              }
            }
          });
      hboxMenu.getChildren().add(buttonViewSelected);

      buttonEditSelected = new CFButton();
      buttonEditSelected.setMinWidth(200);
      buttonEditSelected.setText("Edit Selected");
      buttonEditSelected.setOnAction(
          new EventHandler<ActionEvent>() {
            @Override
            public void handle(ActionEvent e) {
              final String S_ProcName = "handle";
              try {
                ICFAccSchemaObj schemaObj = (ICFAccSchemaObj) javafxSchema.getSchema();
                if (schemaObj == null) {
                  throw CFLib.getDefaultExceptionFactory()
                      .newNullArgumentException(getClass(), S_ProcName, 0, "schemaObj");
                }
                ICFAccFeeObj selectedInstance = getJavaFXFocusAsFee();
                if (selectedInstance != null) {
                  String classCode = selectedInstance.getClassCode();
                  if ("FEE".equals(classCode)) {
                    CFBorderPane frame =
                        javafxSchema
                            .getFeeFactory()
                            .newViewEditForm(
                                cfFormManager,
                                selectedInstance,
                                getViewEditClosedCallback(),
                                false);
                    ((ICFAccJavaFXFeePaneCommon) frame).setPaneMode(CFPane.PaneMode.Edit);
                    cfFormManager.pushForm(frame);
                  } else {
                    throw CFLib.getDefaultExceptionFactory()
                        .newUnsupportedClassException(
                            getClass(),
                            S_ProcName,
                            "selectedInstance",
                            selectedInstance,
                            "ICFAccFeeObj");
                  }
                }
              } catch (Throwable t) {
                CFConsole.formException(S_FormName, ((CFButton) e.getSource()).getText(), t);
              }
            }
          });
      hboxMenu.getChildren().add(buttonEditSelected);

      buttonDeleteSelected = new CFButton();
      buttonDeleteSelected.setMinWidth(200);
      buttonDeleteSelected.setText("Delete Selected");
      buttonDeleteSelected.setOnAction(
          new EventHandler<ActionEvent>() {
            @Override
            public void handle(ActionEvent e) {
              final String S_ProcName = "handle";
              try {
                ICFAccSchemaObj schemaObj = (ICFAccSchemaObj) javafxSchema.getSchema();
                if (schemaObj == null) {
                  throw CFLib.getDefaultExceptionFactory()
                      .newNullArgumentException(getClass(), S_ProcName, 0, "schemaObj");
                }
                ICFAccFeeObj selectedInstance = getJavaFXFocusAsFee();
                if (selectedInstance != null) {
                  String classCode = selectedInstance.getClassCode();
                  if ("FEE".equals(classCode)) {
                    CFBorderPane frame =
                        javafxSchema
                            .getFeeFactory()
                            .newAskDeleteForm(cfFormManager, selectedInstance, getDeleteCallback());
                    ((ICFAccJavaFXFeePaneCommon) frame).setPaneMode(CFPane.PaneMode.View);
                    cfFormManager.pushForm(frame);
                  } else {
                    throw CFLib.getDefaultExceptionFactory()
                        .newUnsupportedClassException(
                            getClass(),
                            S_ProcName,
                            "selectedInstance",
                            selectedInstance,
                            "ICFAccFeeObj");
                  }
                }
              } catch (Throwable t) {
                CFConsole.formException(S_FormName, ((CFButton) e.getSource()).getText(), t);
              }
            }
          });
      hboxMenu.getChildren().add(buttonDeleteSelected);
    }
    return (hboxMenu);
  }
 public CFDbTestJavaFXNumberTypePickerPane(
     ICFFormManager formManager,
     ICFDbTestJavaFXSchema argSchema,
     ICFDbTestNumberTypeObj argFocus,
     ICFDbTestSchemaDefObj argContainer,
     Collection<ICFDbTestNumberTypeObj> argDataCollection,
     ICFDbTestJavaFXNumberTypeChosen whenChosen) {
   super();
   final String S_ProcName = "construct-schema-focus";
   if (formManager == null) {
     throw CFLib.getDefaultExceptionFactory()
         .newNullArgumentException(getClass(), S_ProcName, 1, "formManager");
   }
   cfFormManager = formManager;
   if (argSchema == null) {
     throw CFLib.getDefaultExceptionFactory()
         .newNullArgumentException(getClass(), S_ProcName, 2, "argSchema");
   }
   if (whenChosen == null) {
     throw CFLib.getDefaultExceptionFactory()
         .newNullArgumentException(getClass(), S_ProcName, 6, "whenChosen");
   }
   invokeWhenChosen = whenChosen;
   // argFocus is optional; focus may be set later during execution as
   // conditions of the runtime change.
   javafxSchema = argSchema;
   javaFXFocus = argFocus;
   javafxContainer = argContainer;
   setJavaFXDataCollection(argDataCollection);
   dataTable = new TableView<ICFDbTestNumberTypeObj>();
   tableColumnId = new TableColumn<ICFDbTestNumberTypeObj, Long>("Id");
   tableColumnId.setCellValueFactory(
       new Callback<CellDataFeatures<ICFDbTestNumberTypeObj, Long>, ObservableValue<Long>>() {
         public ObservableValue<Long> call(CellDataFeatures<ICFDbTestNumberTypeObj, Long> p) {
           ICFDbTestValueObj obj = p.getValue();
           if (obj == null) {
             return (null);
           } else {
             long value = obj.getRequiredId();
             Long wrapped = new Long(value);
             ReadOnlyObjectWrapper<Long> observable = new ReadOnlyObjectWrapper<Long>();
             observable.setValue(wrapped);
             return (observable);
           }
         }
       });
   tableColumnId.setCellFactory(
       new Callback<
           TableColumn<ICFDbTestNumberTypeObj, Long>, TableCell<ICFDbTestNumberTypeObj, Long>>() {
         @Override
         public TableCell<ICFDbTestNumberTypeObj, Long> call(
             TableColumn<ICFDbTestNumberTypeObj, Long> arg) {
           return new CFInt64TableCell<ICFDbTestNumberTypeObj>();
         }
       });
   dataTable.getColumns().add(tableColumnId);
   tableColumnName = new TableColumn<ICFDbTestNumberTypeObj, String>("Name");
   tableColumnName.setCellValueFactory(
       new Callback<CellDataFeatures<ICFDbTestNumberTypeObj, String>, ObservableValue<String>>() {
         public ObservableValue<String> call(CellDataFeatures<ICFDbTestNumberTypeObj, String> p) {
           ICFDbTestValueObj obj = p.getValue();
           if (obj == null) {
             return (null);
           } else {
             String value = obj.getRequiredName();
             ReadOnlyObjectWrapper<String> observable = new ReadOnlyObjectWrapper<String>();
             observable.setValue(value);
             return (observable);
           }
         }
       });
   tableColumnName.setCellFactory(
       new Callback<
           TableColumn<ICFDbTestNumberTypeObj, String>,
           TableCell<ICFDbTestNumberTypeObj, String>>() {
         @Override
         public TableCell<ICFDbTestNumberTypeObj, String> call(
             TableColumn<ICFDbTestNumberTypeObj, String> arg) {
           return new CFStringTableCell<ICFDbTestNumberTypeObj>();
         }
       });
   dataTable.getColumns().add(tableColumnName);
   tableColumnDefaultVisibility =
       new TableColumn<ICFDbTestNumberTypeObj, Boolean>("DefaultVisibility");
   tableColumnDefaultVisibility.setCellValueFactory(
       new Callback<
           CellDataFeatures<ICFDbTestNumberTypeObj, Boolean>, ObservableValue<Boolean>>() {
         public ObservableValue<Boolean> call(
             CellDataFeatures<ICFDbTestNumberTypeObj, Boolean> p) {
           ICFDbTestValueObj obj = p.getValue();
           if (obj == null) {
             return (null);
           } else {
             boolean value = obj.getRequiredDefaultVisibility();
             Boolean wrapped = new Boolean(value);
             ReadOnlyObjectWrapper<Boolean> observable = new ReadOnlyObjectWrapper<Boolean>();
             observable.setValue(wrapped);
             return (observable);
           }
         }
       });
   tableColumnDefaultVisibility.setCellFactory(
       new Callback<
           TableColumn<ICFDbTestNumberTypeObj, Boolean>,
           TableCell<ICFDbTestNumberTypeObj, Boolean>>() {
         @Override
         public TableCell<ICFDbTestNumberTypeObj, Boolean> call(
             TableColumn<ICFDbTestNumberTypeObj, Boolean> arg) {
           return new CFBoolTableCell<ICFDbTestNumberTypeObj>();
         }
       });
   dataTable.getColumns().add(tableColumnDefaultVisibility);
   dataTable
       .getSelectionModel()
       .selectedItemProperty()
       .addListener(
           new ChangeListener<ICFDbTestNumberTypeObj>() {
             @Override
             public void changed(
                 ObservableValue<? extends ICFDbTestNumberTypeObj> observable,
                 ICFDbTestNumberTypeObj oldValue,
                 ICFDbTestNumberTypeObj newValue) {
               setJavaFXFocus(newValue);
               if (buttonChooseSelected != null) {
                 if (newValue != null) {
                   buttonChooseSelected.setDisable(false);
                 } else {
                   buttonChooseSelected.setDisable(true);
                 }
               }
             }
           });
   hboxMenu = new CFHBox(10);
   buttonCancel = new CFButton();
   buttonCancel.setMinWidth(200);
   buttonCancel.setText("Cancel");
   buttonCancel.setOnAction(
       new EventHandler<ActionEvent>() {
         @Override
         public void handle(ActionEvent e) {
           final String S_ProcName = "handle";
           try {
             cfFormManager.closeCurrentForm();
           } catch (Throwable t) {
             CFConsole.formException(S_FormName, ((CFButton) e.getSource()).getText(), t);
           }
         }
       });
   hboxMenu.getChildren().add(buttonCancel);
   buttonChooseNone = new CFButton();
   buttonChooseNone.setMinWidth(200);
   buttonChooseNone.setText("ChooseNone");
   buttonChooseNone.setOnAction(
       new EventHandler<ActionEvent>() {
         @Override
         public void handle(ActionEvent e) {
           final String S_ProcName = "handle";
           try {
             ICFDbTestSchemaObj schemaObj = (ICFDbTestSchemaObj) javafxSchema.getSchema();
             if (schemaObj == null) {
               throw CFLib.getDefaultExceptionFactory()
                   .newNullArgumentException(getClass(), S_ProcName, 0, "schemaObj");
             }
             invokeWhenChosen.choseNumberType(null);
             cfFormManager.closeCurrentForm();
           } catch (Throwable t) {
             CFConsole.formException(S_FormName, ((CFButton) e.getSource()).getText(), t);
           }
         }
       });
   hboxMenu.getChildren().add(buttonChooseNone);
   buttonChooseSelected = new CFButton();
   buttonChooseSelected.setMinWidth(200);
   buttonChooseSelected.setText("ChooseSelected");
   buttonChooseSelected.setOnAction(
       new EventHandler<ActionEvent>() {
         @Override
         public void handle(ActionEvent e) {
           final String S_ProcName = "handle";
           try {
             ICFDbTestSchemaObj schemaObj = (ICFDbTestSchemaObj) javafxSchema.getSchema();
             if (schemaObj == null) {
               throw CFLib.getDefaultExceptionFactory()
                   .newNullArgumentException(getClass(), S_ProcName, 0, "schemaObj");
             }
             ICFDbTestNumberTypeObj selectedInstance = getJavaFXFocusAsNumberType();
             invokeWhenChosen.choseNumberType(selectedInstance);
             cfFormManager.closeCurrentForm();
           } catch (Throwable t) {
             CFConsole.formException(S_FormName, ((CFButton) e.getSource()).getText(), t);
           }
         }
       });
   hboxMenu.getChildren().add(buttonChooseSelected);
   if (argFocus != null) {
     dataTable.getSelectionModel().select(argFocus);
   }
   setTop(hboxMenu);
   setCenter(dataTable);
 }
 public CFDbTestJavaFXOptFullRangeAskDeleteForm(
     ICFFormManager formManager,
     ICFDbTestJavaFXSchema argSchema,
     ICFDbTestOptFullRangeObj argFocus,
     ICFDeleteCallback callback) {
   super();
   final String S_ProcName = "construct-schema-focus";
   if (formManager == null) {
     throw CFLib.getDefaultExceptionFactory()
         .newNullArgumentException(getClass(), S_ProcName, 1, "formManager");
   }
   cfFormManager = formManager;
   if (argSchema == null) {
     throw CFLib.getDefaultExceptionFactory()
         .newNullArgumentException(getClass(), S_ProcName, 2, "argSchema");
   }
   // argFocus is optional; focus may be set later during execution as
   // conditions of the runtime change.
   javafxSchema = argSchema;
   javaFXFocus = argFocus;
   deleteCallback = callback;
   // Construct the various objects
   textAreaMessage = new CFTextArea();
   textAreaMessage.setText("Are you sure you want to delete this OptFullRange?");
   hboxButtons = new CFHBox(10);
   buttonOk = new CFButton();
   buttonOk.setMinWidth(200);
   buttonOk.setText("Ok");
   buttonOk.setOnAction(
       new EventHandler<ActionEvent>() {
         @Override
         public void handle(ActionEvent e) {
           final String S_ProcName = "actionOkPerformed";
           try {
             ICFDbTestOptFullRangeObj obj = getJavaFXFocusAsOptFullRange();
             ICFDbTestOptFullRangeEditObj editObj = (ICFDbTestOptFullRangeEditObj) obj.beginEdit();
             editObj.delete();
             editObj.endEdit();
             cfFormManager.closeCurrentForm();
             if (deleteCallback != null) {
               deleteCallback.formClosed(null);
               deleteCallback.deleted(obj);
             }
           } catch (Throwable t) {
             CFConsole.formException(S_FormName, ((CFButton) e.getSource()).getText(), t);
           }
         }
       });
   buttonCancel = new CFButton();
   buttonCancel.setMinWidth(200);
   buttonCancel.setText("Cancel");
   buttonCancel.setOnAction(
       new EventHandler<ActionEvent>() {
         @Override
         public void handle(ActionEvent e) {
           final String S_ProcName = "actionCancelPerformed";
           try {
             cfFormManager.closeCurrentForm();
             if (deleteCallback != null) {
               deleteCallback.formClosed(null);
             }
           } catch (Throwable t) {
             CFConsole.formException(S_FormName, ((CFButton) e.getSource()).getText(), t);
           }
         }
       });
   hboxButtons.getChildren().addAll(buttonOk, buttonCancel);
   attrPane = argSchema.getOptFullRangeFactory().newAttrPane(cfFormManager, argFocus);
   scrollPane = new ScrollPane();
   scrollPane.setFitToWidth(true);
   scrollPane.setHbarPolicy(ScrollBarPolicy.NEVER);
   scrollPane.setVbarPolicy(ScrollBarPolicy.AS_NEEDED);
   scrollPane.setContent(attrPane);
   setTop(textAreaMessage);
   setCenter(scrollPane);
   setBottom(hboxButtons);
 }
 public CFBamJavaFXFloatDefPickerPane(
     ICFFormManager formManager,
     ICFBamJavaFXSchema argSchema,
     ICFBamFloatDefObj argFocus,
     ICFBamScopeObj argContainer,
     Collection<ICFBamFloatDefObj> argDataCollection,
     ICFBamJavaFXFloatDefChosen whenChosen) {
   super();
   final String S_ProcName = "construct-schema-focus";
   if (formManager == null) {
     throw CFLib.getDefaultExceptionFactory()
         .newNullArgumentException(getClass(), S_ProcName, 1, "formManager");
   }
   cfFormManager = formManager;
   if (argSchema == null) {
     throw CFLib.getDefaultExceptionFactory()
         .newNullArgumentException(getClass(), S_ProcName, 2, "argSchema");
   }
   if (whenChosen == null) {
     throw CFLib.getDefaultExceptionFactory()
         .newNullArgumentException(getClass(), S_ProcName, 6, "whenChosen");
   }
   invokeWhenChosen = whenChosen;
   // argFocus is optional; focus may be set later during execution as
   // conditions of the runtime change.
   javafxSchema = argSchema;
   javaFXFocus = argFocus;
   javafxContainer = argContainer;
   setJavaFXDataCollection(argDataCollection);
   dataTable = new TableView<ICFBamFloatDefObj>();
   tableColumnObjKind = new TableColumn<ICFBamFloatDefObj, String>("Class Code");
   tableColumnObjKind.setCellValueFactory(
       new Callback<CellDataFeatures<ICFBamFloatDefObj, String>, ObservableValue<String>>() {
         @Override
         public ObservableValue<String> call(CellDataFeatures<ICFBamFloatDefObj, String> p) {
           ICFBamFloatDefObj obj = p.getValue();
           if (obj == null) {
             return (null);
           } else {
             String classCode = obj.getClassCode();
             ReadOnlyObjectWrapper<String> observable = new ReadOnlyObjectWrapper<String>();
             observable.setValue(classCode);
             return (observable);
           }
         }
       });
   tableColumnObjKind.setCellFactory(
       new Callback<
           TableColumn<ICFBamFloatDefObj, String>, TableCell<ICFBamFloatDefObj, String>>() {
         @Override
         public TableCell<ICFBamFloatDefObj, String> call(
             TableColumn<ICFBamFloatDefObj, String> arg) {
           return new CFStringTableCell<ICFBamFloatDefObj>();
         }
       });
   dataTable.getColumns().add(tableColumnObjKind);
   tableColumnId = new TableColumn<ICFBamFloatDefObj, Long>("Id");
   tableColumnId.setCellValueFactory(
       new Callback<CellDataFeatures<ICFBamFloatDefObj, Long>, ObservableValue<Long>>() {
         public ObservableValue<Long> call(CellDataFeatures<ICFBamFloatDefObj, Long> p) {
           ICFBamValueObj obj = p.getValue();
           if (obj == null) {
             return (null);
           } else {
             long value = obj.getRequiredId();
             Long wrapped = new Long(value);
             ReadOnlyObjectWrapper<Long> observable = new ReadOnlyObjectWrapper<Long>();
             observable.setValue(wrapped);
             return (observable);
           }
         }
       });
   tableColumnId.setCellFactory(
       new Callback<TableColumn<ICFBamFloatDefObj, Long>, TableCell<ICFBamFloatDefObj, Long>>() {
         @Override
         public TableCell<ICFBamFloatDefObj, Long> call(TableColumn<ICFBamFloatDefObj, Long> arg) {
           return new CFInt64TableCell<ICFBamFloatDefObj>();
         }
       });
   dataTable.getColumns().add(tableColumnId);
   tableColumnName = new TableColumn<ICFBamFloatDefObj, String>("Name");
   tableColumnName.setCellValueFactory(
       new Callback<CellDataFeatures<ICFBamFloatDefObj, String>, ObservableValue<String>>() {
         public ObservableValue<String> call(CellDataFeatures<ICFBamFloatDefObj, String> p) {
           ICFBamValueObj obj = p.getValue();
           if (obj == null) {
             return (null);
           } else {
             String value = obj.getRequiredName();
             ReadOnlyObjectWrapper<String> observable = new ReadOnlyObjectWrapper<String>();
             observable.setValue(value);
             return (observable);
           }
         }
       });
   tableColumnName.setCellFactory(
       new Callback<
           TableColumn<ICFBamFloatDefObj, String>, TableCell<ICFBamFloatDefObj, String>>() {
         @Override
         public TableCell<ICFBamFloatDefObj, String> call(
             TableColumn<ICFBamFloatDefObj, String> arg) {
           return new CFStringTableCell<ICFBamFloatDefObj>();
         }
       });
   dataTable.getColumns().add(tableColumnName);
   tableColumnShortName = new TableColumn<ICFBamFloatDefObj, String>("ShortName");
   tableColumnShortName.setCellValueFactory(
       new Callback<CellDataFeatures<ICFBamFloatDefObj, String>, ObservableValue<String>>() {
         public ObservableValue<String> call(CellDataFeatures<ICFBamFloatDefObj, String> p) {
           ICFBamValueObj obj = p.getValue();
           if (obj == null) {
             return (null);
           } else {
             String value = obj.getOptionalShortName();
             ReadOnlyObjectWrapper<String> observable = new ReadOnlyObjectWrapper<String>();
             observable.setValue(value);
             return (observable);
           }
         }
       });
   tableColumnShortName.setCellFactory(
       new Callback<
           TableColumn<ICFBamFloatDefObj, String>, TableCell<ICFBamFloatDefObj, String>>() {
         @Override
         public TableCell<ICFBamFloatDefObj, String> call(
             TableColumn<ICFBamFloatDefObj, String> arg) {
           return new CFStringTableCell<ICFBamFloatDefObj>();
         }
       });
   dataTable.getColumns().add(tableColumnShortName);
   tableColumnLabel = new TableColumn<ICFBamFloatDefObj, String>("Label");
   tableColumnLabel.setCellValueFactory(
       new Callback<CellDataFeatures<ICFBamFloatDefObj, String>, ObservableValue<String>>() {
         public ObservableValue<String> call(CellDataFeatures<ICFBamFloatDefObj, String> p) {
           ICFBamValueObj obj = p.getValue();
           if (obj == null) {
             return (null);
           } else {
             String value = obj.getOptionalLabel();
             ReadOnlyObjectWrapper<String> observable = new ReadOnlyObjectWrapper<String>();
             observable.setValue(value);
             return (observable);
           }
         }
       });
   tableColumnLabel.setCellFactory(
       new Callback<
           TableColumn<ICFBamFloatDefObj, String>, TableCell<ICFBamFloatDefObj, String>>() {
         @Override
         public TableCell<ICFBamFloatDefObj, String> call(
             TableColumn<ICFBamFloatDefObj, String> arg) {
           return new CFStringTableCell<ICFBamFloatDefObj>();
         }
       });
   dataTable.getColumns().add(tableColumnLabel);
   tableColumnShortDescription = new TableColumn<ICFBamFloatDefObj, String>("ShortDescription");
   tableColumnShortDescription.setCellValueFactory(
       new Callback<CellDataFeatures<ICFBamFloatDefObj, String>, ObservableValue<String>>() {
         public ObservableValue<String> call(CellDataFeatures<ICFBamFloatDefObj, String> p) {
           ICFBamValueObj obj = p.getValue();
           if (obj == null) {
             return (null);
           } else {
             String value = obj.getOptionalShortDescription();
             ReadOnlyObjectWrapper<String> observable = new ReadOnlyObjectWrapper<String>();
             observable.setValue(value);
             return (observable);
           }
         }
       });
   tableColumnShortDescription.setCellFactory(
       new Callback<
           TableColumn<ICFBamFloatDefObj, String>, TableCell<ICFBamFloatDefObj, String>>() {
         @Override
         public TableCell<ICFBamFloatDefObj, String> call(
             TableColumn<ICFBamFloatDefObj, String> arg) {
           return new CFStringTableCell<ICFBamFloatDefObj>();
         }
       });
   dataTable.getColumns().add(tableColumnShortDescription);
   tableColumnDescription = new TableColumn<ICFBamFloatDefObj, String>("Description");
   tableColumnDescription.setCellValueFactory(
       new Callback<CellDataFeatures<ICFBamFloatDefObj, String>, ObservableValue<String>>() {
         public ObservableValue<String> call(CellDataFeatures<ICFBamFloatDefObj, String> p) {
           ICFBamValueObj obj = p.getValue();
           if (obj == null) {
             return (null);
           } else {
             String value = obj.getOptionalDescription();
             ReadOnlyObjectWrapper<String> observable = new ReadOnlyObjectWrapper<String>();
             observable.setValue(value);
             return (observable);
           }
         }
       });
   tableColumnDescription.setCellFactory(
       new Callback<
           TableColumn<ICFBamFloatDefObj, String>, TableCell<ICFBamFloatDefObj, String>>() {
         @Override
         public TableCell<ICFBamFloatDefObj, String> call(
             TableColumn<ICFBamFloatDefObj, String> arg) {
           return new CFStringTableCell<ICFBamFloatDefObj>();
         }
       });
   dataTable.getColumns().add(tableColumnDescription);
   tableColumnIsNullable = new TableColumn<ICFBamFloatDefObj, Boolean>("IsNullable");
   tableColumnIsNullable.setCellValueFactory(
       new Callback<CellDataFeatures<ICFBamFloatDefObj, Boolean>, ObservableValue<Boolean>>() {
         public ObservableValue<Boolean> call(CellDataFeatures<ICFBamFloatDefObj, Boolean> p) {
           ICFBamValueObj obj = p.getValue();
           if (obj == null) {
             return (null);
           } else {
             boolean value = obj.getRequiredIsNullable();
             Boolean wrapped = new Boolean(value);
             ReadOnlyObjectWrapper<Boolean> observable = new ReadOnlyObjectWrapper<Boolean>();
             observable.setValue(wrapped);
             return (observable);
           }
         }
       });
   tableColumnIsNullable.setCellFactory(
       new Callback<
           TableColumn<ICFBamFloatDefObj, Boolean>, TableCell<ICFBamFloatDefObj, Boolean>>() {
         @Override
         public TableCell<ICFBamFloatDefObj, Boolean> call(
             TableColumn<ICFBamFloatDefObj, Boolean> arg) {
           return new CFBoolTableCell<ICFBamFloatDefObj>();
         }
       });
   dataTable.getColumns().add(tableColumnIsNullable);
   tableColumnGenerateId = new TableColumn<ICFBamFloatDefObj, Boolean>("GenerateId");
   tableColumnGenerateId.setCellValueFactory(
       new Callback<CellDataFeatures<ICFBamFloatDefObj, Boolean>, ObservableValue<Boolean>>() {
         public ObservableValue<Boolean> call(CellDataFeatures<ICFBamFloatDefObj, Boolean> p) {
           ICFBamValueObj obj = p.getValue();
           if (obj == null) {
             return (null);
           } else {
             Boolean value = obj.getOptionalGenerateId();
             ReadOnlyObjectWrapper<Boolean> observable = new ReadOnlyObjectWrapper<Boolean>();
             observable.setValue(value);
             return (observable);
           }
         }
       });
   tableColumnGenerateId.setCellFactory(
       new Callback<
           TableColumn<ICFBamFloatDefObj, Boolean>, TableCell<ICFBamFloatDefObj, Boolean>>() {
         @Override
         public TableCell<ICFBamFloatDefObj, Boolean> call(
             TableColumn<ICFBamFloatDefObj, Boolean> arg) {
           return new CFBoolTableCell<ICFBamFloatDefObj>();
         }
       });
   dataTable.getColumns().add(tableColumnGenerateId);
   tableColumnDataScope =
       new TableColumn<ICFBamFloatDefObj, ICFBamSchema.DataScopeEnum>("DataScope");
   tableColumnDataScope.setCellValueFactory(
       new Callback<
           CellDataFeatures<ICFBamFloatDefObj, ICFBamSchema.DataScopeEnum>,
           ObservableValue<ICFBamSchema.DataScopeEnum>>() {
         public ObservableValue<ICFBamSchema.DataScopeEnum> call(
             CellDataFeatures<ICFBamFloatDefObj, ICFBamSchema.DataScopeEnum> p) {
           ICFBamValueObj obj = p.getValue();
           if (obj == null) {
             return (null);
           } else {
             ICFBamSchema.DataScopeEnum value = obj.getOptionalDataScope();
             ReadOnlyObjectWrapper<ICFBamSchema.DataScopeEnum> observable =
                 new ReadOnlyObjectWrapper<ICFBamSchema.DataScopeEnum>();
             observable.setValue(value);
             return (observable);
           }
         }
       });
   tableColumnDataScope.setCellFactory(
       new Callback<
           TableColumn<ICFBamFloatDefObj, ICFBamSchema.DataScopeEnum>,
           TableCell<ICFBamFloatDefObj, ICFBamSchema.DataScopeEnum>>() {
         @Override
         public TableCell<ICFBamFloatDefObj, ICFBamSchema.DataScopeEnum> call(
             TableColumn<ICFBamFloatDefObj, ICFBamSchema.DataScopeEnum> arg) {
           return new CFEnumTableCell<ICFBamFloatDefObj, ICFBamSchema.DataScopeEnum>();
         }
       });
   dataTable.getColumns().add(tableColumnDataScope);
   tableColumnViewAccessSecurity =
       new TableColumn<ICFBamFloatDefObj, ICFBamSchema.AccessSecurityEnum>("ViewAccessSecurity");
   tableColumnViewAccessSecurity.setCellValueFactory(
       new Callback<
           CellDataFeatures<ICFBamFloatDefObj, ICFBamSchema.AccessSecurityEnum>,
           ObservableValue<ICFBamSchema.AccessSecurityEnum>>() {
         public ObservableValue<ICFBamSchema.AccessSecurityEnum> call(
             CellDataFeatures<ICFBamFloatDefObj, ICFBamSchema.AccessSecurityEnum> p) {
           ICFBamValueObj obj = p.getValue();
           if (obj == null) {
             return (null);
           } else {
             ICFBamSchema.AccessSecurityEnum value = obj.getOptionalViewAccessSecurity();
             ReadOnlyObjectWrapper<ICFBamSchema.AccessSecurityEnum> observable =
                 new ReadOnlyObjectWrapper<ICFBamSchema.AccessSecurityEnum>();
             observable.setValue(value);
             return (observable);
           }
         }
       });
   tableColumnViewAccessSecurity.setCellFactory(
       new Callback<
           TableColumn<ICFBamFloatDefObj, ICFBamSchema.AccessSecurityEnum>,
           TableCell<ICFBamFloatDefObj, ICFBamSchema.AccessSecurityEnum>>() {
         @Override
         public TableCell<ICFBamFloatDefObj, ICFBamSchema.AccessSecurityEnum> call(
             TableColumn<ICFBamFloatDefObj, ICFBamSchema.AccessSecurityEnum> arg) {
           return new CFEnumTableCell<ICFBamFloatDefObj, ICFBamSchema.AccessSecurityEnum>();
         }
       });
   dataTable.getColumns().add(tableColumnViewAccessSecurity);
   tableColumnEditAccessSecurity =
       new TableColumn<ICFBamFloatDefObj, ICFBamSchema.AccessSecurityEnum>("EditAccessSecurity");
   tableColumnEditAccessSecurity.setCellValueFactory(
       new Callback<
           CellDataFeatures<ICFBamFloatDefObj, ICFBamSchema.AccessSecurityEnum>,
           ObservableValue<ICFBamSchema.AccessSecurityEnum>>() {
         public ObservableValue<ICFBamSchema.AccessSecurityEnum> call(
             CellDataFeatures<ICFBamFloatDefObj, ICFBamSchema.AccessSecurityEnum> p) {
           ICFBamValueObj obj = p.getValue();
           if (obj == null) {
             return (null);
           } else {
             ICFBamSchema.AccessSecurityEnum value = obj.getOptionalEditAccessSecurity();
             ReadOnlyObjectWrapper<ICFBamSchema.AccessSecurityEnum> observable =
                 new ReadOnlyObjectWrapper<ICFBamSchema.AccessSecurityEnum>();
             observable.setValue(value);
             return (observable);
           }
         }
       });
   tableColumnEditAccessSecurity.setCellFactory(
       new Callback<
           TableColumn<ICFBamFloatDefObj, ICFBamSchema.AccessSecurityEnum>,
           TableCell<ICFBamFloatDefObj, ICFBamSchema.AccessSecurityEnum>>() {
         @Override
         public TableCell<ICFBamFloatDefObj, ICFBamSchema.AccessSecurityEnum> call(
             TableColumn<ICFBamFloatDefObj, ICFBamSchema.AccessSecurityEnum> arg) {
           return new CFEnumTableCell<ICFBamFloatDefObj, ICFBamSchema.AccessSecurityEnum>();
         }
       });
   dataTable.getColumns().add(tableColumnEditAccessSecurity);
   tableColumnViewAccessFrequency =
       new TableColumn<ICFBamFloatDefObj, ICFBamSchema.AccessFrequencyEnum>("ViewAccessFrequency");
   tableColumnViewAccessFrequency.setCellValueFactory(
       new Callback<
           CellDataFeatures<ICFBamFloatDefObj, ICFBamSchema.AccessFrequencyEnum>,
           ObservableValue<ICFBamSchema.AccessFrequencyEnum>>() {
         public ObservableValue<ICFBamSchema.AccessFrequencyEnum> call(
             CellDataFeatures<ICFBamFloatDefObj, ICFBamSchema.AccessFrequencyEnum> p) {
           ICFBamValueObj obj = p.getValue();
           if (obj == null) {
             return (null);
           } else {
             ICFBamSchema.AccessFrequencyEnum value = obj.getOptionalViewAccessFrequency();
             ReadOnlyObjectWrapper<ICFBamSchema.AccessFrequencyEnum> observable =
                 new ReadOnlyObjectWrapper<ICFBamSchema.AccessFrequencyEnum>();
             observable.setValue(value);
             return (observable);
           }
         }
       });
   tableColumnViewAccessFrequency.setCellFactory(
       new Callback<
           TableColumn<ICFBamFloatDefObj, ICFBamSchema.AccessFrequencyEnum>,
           TableCell<ICFBamFloatDefObj, ICFBamSchema.AccessFrequencyEnum>>() {
         @Override
         public TableCell<ICFBamFloatDefObj, ICFBamSchema.AccessFrequencyEnum> call(
             TableColumn<ICFBamFloatDefObj, ICFBamSchema.AccessFrequencyEnum> arg) {
           return new CFEnumTableCell<ICFBamFloatDefObj, ICFBamSchema.AccessFrequencyEnum>();
         }
       });
   dataTable.getColumns().add(tableColumnViewAccessFrequency);
   tableColumnEditAccessFrequency =
       new TableColumn<ICFBamFloatDefObj, ICFBamSchema.AccessFrequencyEnum>("EditAccessFrequency");
   tableColumnEditAccessFrequency.setCellValueFactory(
       new Callback<
           CellDataFeatures<ICFBamFloatDefObj, ICFBamSchema.AccessFrequencyEnum>,
           ObservableValue<ICFBamSchema.AccessFrequencyEnum>>() {
         public ObservableValue<ICFBamSchema.AccessFrequencyEnum> call(
             CellDataFeatures<ICFBamFloatDefObj, ICFBamSchema.AccessFrequencyEnum> p) {
           ICFBamValueObj obj = p.getValue();
           if (obj == null) {
             return (null);
           } else {
             ICFBamSchema.AccessFrequencyEnum value = obj.getOptionalEditAccessFrequency();
             ReadOnlyObjectWrapper<ICFBamSchema.AccessFrequencyEnum> observable =
                 new ReadOnlyObjectWrapper<ICFBamSchema.AccessFrequencyEnum>();
             observable.setValue(value);
             return (observable);
           }
         }
       });
   tableColumnEditAccessFrequency.setCellFactory(
       new Callback<
           TableColumn<ICFBamFloatDefObj, ICFBamSchema.AccessFrequencyEnum>,
           TableCell<ICFBamFloatDefObj, ICFBamSchema.AccessFrequencyEnum>>() {
         @Override
         public TableCell<ICFBamFloatDefObj, ICFBamSchema.AccessFrequencyEnum> call(
             TableColumn<ICFBamFloatDefObj, ICFBamSchema.AccessFrequencyEnum> arg) {
           return new CFEnumTableCell<ICFBamFloatDefObj, ICFBamSchema.AccessFrequencyEnum>();
         }
       });
   dataTable.getColumns().add(tableColumnEditAccessFrequency);
   tableColumnDefaultVisibility = new TableColumn<ICFBamFloatDefObj, Boolean>("DefaultVisibility");
   tableColumnDefaultVisibility.setCellValueFactory(
       new Callback<CellDataFeatures<ICFBamFloatDefObj, Boolean>, ObservableValue<Boolean>>() {
         public ObservableValue<Boolean> call(CellDataFeatures<ICFBamFloatDefObj, Boolean> p) {
           ICFBamValueObj obj = p.getValue();
           if (obj == null) {
             return (null);
           } else {
             boolean value = obj.getRequiredDefaultVisibility();
             Boolean wrapped = new Boolean(value);
             ReadOnlyObjectWrapper<Boolean> observable = new ReadOnlyObjectWrapper<Boolean>();
             observable.setValue(wrapped);
             return (observable);
           }
         }
       });
   tableColumnDefaultVisibility.setCellFactory(
       new Callback<
           TableColumn<ICFBamFloatDefObj, Boolean>, TableCell<ICFBamFloatDefObj, Boolean>>() {
         @Override
         public TableCell<ICFBamFloatDefObj, Boolean> call(
             TableColumn<ICFBamFloatDefObj, Boolean> arg) {
           return new CFBoolTableCell<ICFBamFloatDefObj>();
         }
       });
   dataTable.getColumns().add(tableColumnDefaultVisibility);
   tableColumnDbName = new TableColumn<ICFBamFloatDefObj, String>("DbName");
   tableColumnDbName.setCellValueFactory(
       new Callback<CellDataFeatures<ICFBamFloatDefObj, String>, ObservableValue<String>>() {
         public ObservableValue<String> call(CellDataFeatures<ICFBamFloatDefObj, String> p) {
           ICFBamAtomObj obj = p.getValue();
           if (obj == null) {
             return (null);
           } else {
             String value = obj.getOptionalDbName();
             ReadOnlyObjectWrapper<String> observable = new ReadOnlyObjectWrapper<String>();
             observable.setValue(value);
             return (observable);
           }
         }
       });
   tableColumnDbName.setCellFactory(
       new Callback<
           TableColumn<ICFBamFloatDefObj, String>, TableCell<ICFBamFloatDefObj, String>>() {
         @Override
         public TableCell<ICFBamFloatDefObj, String> call(
             TableColumn<ICFBamFloatDefObj, String> arg) {
           return new CFStringTableCell<ICFBamFloatDefObj>();
         }
       });
   dataTable.getColumns().add(tableColumnDbName);
   tableColumnInitValue = new TableColumn<ICFBamFloatDefObj, Float>("InitValue");
   tableColumnInitValue.setCellValueFactory(
       new Callback<CellDataFeatures<ICFBamFloatDefObj, Float>, ObservableValue<Float>>() {
         public ObservableValue<Float> call(CellDataFeatures<ICFBamFloatDefObj, Float> p) {
           ICFBamFloatDefObj obj = p.getValue();
           if (obj == null) {
             return (null);
           } else {
             Float value = obj.getOptionalInitValue();
             ReadOnlyObjectWrapper<Float> observable = new ReadOnlyObjectWrapper<Float>();
             observable.setValue(value);
             return (observable);
           }
         }
       });
   tableColumnInitValue.setCellFactory(
       new Callback<TableColumn<ICFBamFloatDefObj, Float>, TableCell<ICFBamFloatDefObj, Float>>() {
         @Override
         public TableCell<ICFBamFloatDefObj, Float> call(
             TableColumn<ICFBamFloatDefObj, Float> arg) {
           return new CFFloatTableCell<ICFBamFloatDefObj>();
         }
       });
   dataTable.getColumns().add(tableColumnInitValue);
   tableColumnDefaultValue = new TableColumn<ICFBamFloatDefObj, Float>("DefaultValue");
   tableColumnDefaultValue.setCellValueFactory(
       new Callback<CellDataFeatures<ICFBamFloatDefObj, Float>, ObservableValue<Float>>() {
         public ObservableValue<Float> call(CellDataFeatures<ICFBamFloatDefObj, Float> p) {
           ICFBamFloatDefObj obj = p.getValue();
           if (obj == null) {
             return (null);
           } else {
             Float value = obj.getOptionalDefaultValue();
             ReadOnlyObjectWrapper<Float> observable = new ReadOnlyObjectWrapper<Float>();
             observable.setValue(value);
             return (observable);
           }
         }
       });
   tableColumnDefaultValue.setCellFactory(
       new Callback<TableColumn<ICFBamFloatDefObj, Float>, TableCell<ICFBamFloatDefObj, Float>>() {
         @Override
         public TableCell<ICFBamFloatDefObj, Float> call(
             TableColumn<ICFBamFloatDefObj, Float> arg) {
           return new CFFloatTableCell<ICFBamFloatDefObj>();
         }
       });
   dataTable.getColumns().add(tableColumnDefaultValue);
   tableColumnMinValue = new TableColumn<ICFBamFloatDefObj, Float>("MinValue");
   tableColumnMinValue.setCellValueFactory(
       new Callback<CellDataFeatures<ICFBamFloatDefObj, Float>, ObservableValue<Float>>() {
         public ObservableValue<Float> call(CellDataFeatures<ICFBamFloatDefObj, Float> p) {
           ICFBamFloatDefObj obj = p.getValue();
           if (obj == null) {
             return (null);
           } else {
             Float value = obj.getOptionalMinValue();
             ReadOnlyObjectWrapper<Float> observable = new ReadOnlyObjectWrapper<Float>();
             observable.setValue(value);
             return (observable);
           }
         }
       });
   tableColumnMinValue.setCellFactory(
       new Callback<TableColumn<ICFBamFloatDefObj, Float>, TableCell<ICFBamFloatDefObj, Float>>() {
         @Override
         public TableCell<ICFBamFloatDefObj, Float> call(
             TableColumn<ICFBamFloatDefObj, Float> arg) {
           return new CFFloatTableCell<ICFBamFloatDefObj>();
         }
       });
   dataTable.getColumns().add(tableColumnMinValue);
   tableColumnMaxValue = new TableColumn<ICFBamFloatDefObj, Float>("MaxValue");
   tableColumnMaxValue.setCellValueFactory(
       new Callback<CellDataFeatures<ICFBamFloatDefObj, Float>, ObservableValue<Float>>() {
         public ObservableValue<Float> call(CellDataFeatures<ICFBamFloatDefObj, Float> p) {
           ICFBamFloatDefObj obj = p.getValue();
           if (obj == null) {
             return (null);
           } else {
             Float value = obj.getOptionalMaxValue();
             ReadOnlyObjectWrapper<Float> observable = new ReadOnlyObjectWrapper<Float>();
             observable.setValue(value);
             return (observable);
           }
         }
       });
   tableColumnMaxValue.setCellFactory(
       new Callback<TableColumn<ICFBamFloatDefObj, Float>, TableCell<ICFBamFloatDefObj, Float>>() {
         @Override
         public TableCell<ICFBamFloatDefObj, Float> call(
             TableColumn<ICFBamFloatDefObj, Float> arg) {
           return new CFFloatTableCell<ICFBamFloatDefObj>();
         }
       });
   dataTable.getColumns().add(tableColumnMaxValue);
   tableColumnNullValue = new TableColumn<ICFBamFloatDefObj, Float>("NullValue");
   tableColumnNullValue.setCellValueFactory(
       new Callback<CellDataFeatures<ICFBamFloatDefObj, Float>, ObservableValue<Float>>() {
         public ObservableValue<Float> call(CellDataFeatures<ICFBamFloatDefObj, Float> p) {
           ICFBamFloatDefObj obj = p.getValue();
           if (obj == null) {
             return (null);
           } else {
             Float value = obj.getOptionalNullValue();
             ReadOnlyObjectWrapper<Float> observable = new ReadOnlyObjectWrapper<Float>();
             observable.setValue(value);
             return (observable);
           }
         }
       });
   tableColumnNullValue.setCellFactory(
       new Callback<TableColumn<ICFBamFloatDefObj, Float>, TableCell<ICFBamFloatDefObj, Float>>() {
         @Override
         public TableCell<ICFBamFloatDefObj, Float> call(
             TableColumn<ICFBamFloatDefObj, Float> arg) {
           return new CFFloatTableCell<ICFBamFloatDefObj>();
         }
       });
   dataTable.getColumns().add(tableColumnNullValue);
   tableColumnUnknownValue = new TableColumn<ICFBamFloatDefObj, Float>("UnknownValue");
   tableColumnUnknownValue.setCellValueFactory(
       new Callback<CellDataFeatures<ICFBamFloatDefObj, Float>, ObservableValue<Float>>() {
         public ObservableValue<Float> call(CellDataFeatures<ICFBamFloatDefObj, Float> p) {
           ICFBamFloatDefObj obj = p.getValue();
           if (obj == null) {
             return (null);
           } else {
             Float value = obj.getOptionalUnknownValue();
             ReadOnlyObjectWrapper<Float> observable = new ReadOnlyObjectWrapper<Float>();
             observable.setValue(value);
             return (observable);
           }
         }
       });
   tableColumnUnknownValue.setCellFactory(
       new Callback<TableColumn<ICFBamFloatDefObj, Float>, TableCell<ICFBamFloatDefObj, Float>>() {
         @Override
         public TableCell<ICFBamFloatDefObj, Float> call(
             TableColumn<ICFBamFloatDefObj, Float> arg) {
           return new CFFloatTableCell<ICFBamFloatDefObj>();
         }
       });
   dataTable.getColumns().add(tableColumnUnknownValue);
   tableColumnLookupDefSchema =
       new TableColumn<ICFBamFloatDefObj, ICFBamSchemaDefObj>("Defining Schema Definition");
   tableColumnLookupDefSchema.setCellValueFactory(
       new Callback<
           CellDataFeatures<ICFBamFloatDefObj, ICFBamSchemaDefObj>,
           ObservableValue<ICFBamSchemaDefObj>>() {
         public ObservableValue<ICFBamSchemaDefObj> call(
             CellDataFeatures<ICFBamFloatDefObj, ICFBamSchemaDefObj> p) {
           ICFBamFloatDefObj obj = p.getValue();
           if (obj == null) {
             return (null);
           } else {
             ICFBamSchemaDefObj ref = obj.getOptionalLookupDefSchema();
             ReadOnlyObjectWrapper<ICFBamSchemaDefObj> observable =
                 new ReadOnlyObjectWrapper<ICFBamSchemaDefObj>();
             observable.setValue(ref);
             return (observable);
           }
         }
       });
   tableColumnLookupDefSchema.setCellFactory(
       new Callback<
           TableColumn<ICFBamFloatDefObj, ICFBamSchemaDefObj>,
           TableCell<ICFBamFloatDefObj, ICFBamSchemaDefObj>>() {
         @Override
         public TableCell<ICFBamFloatDefObj, ICFBamSchemaDefObj> call(
             TableColumn<ICFBamFloatDefObj, ICFBamSchemaDefObj> arg) {
           return new CFReferenceTableCell<ICFBamFloatDefObj, ICFBamSchemaDefObj>();
         }
       });
   dataTable.getColumns().add(tableColumnLookupDefSchema);
   dataTable
       .getSelectionModel()
       .selectedItemProperty()
       .addListener(
           new ChangeListener<ICFBamFloatDefObj>() {
             @Override
             public void changed(
                 ObservableValue<? extends ICFBamFloatDefObj> observable,
                 ICFBamFloatDefObj oldValue,
                 ICFBamFloatDefObj newValue) {
               setJavaFXFocus(newValue);
               if (buttonChooseSelected != null) {
                 if (newValue != null) {
                   buttonChooseSelected.setDisable(false);
                 } else {
                   buttonChooseSelected.setDisable(true);
                 }
               }
             }
           });
   hboxMenu = new CFHBox(10);
   buttonCancel = new CFButton();
   buttonCancel.setMinWidth(200);
   buttonCancel.setText("Cancel");
   buttonCancel.setOnAction(
       new EventHandler<ActionEvent>() {
         @Override
         public void handle(ActionEvent e) {
           final String S_ProcName = "handle";
           try {
             cfFormManager.closeCurrentForm();
           } catch (Throwable t) {
             CFConsole.formException(S_FormName, ((CFButton) e.getSource()).getText(), t);
           }
         }
       });
   hboxMenu.getChildren().add(buttonCancel);
   buttonChooseNone = new CFButton();
   buttonChooseNone.setMinWidth(200);
   buttonChooseNone.setText("ChooseNone");
   buttonChooseNone.setOnAction(
       new EventHandler<ActionEvent>() {
         @Override
         public void handle(ActionEvent e) {
           final String S_ProcName = "handle";
           try {
             ICFBamSchemaObj schemaObj = (ICFBamSchemaObj) javafxSchema.getSchema();
             if (schemaObj == null) {
               throw CFLib.getDefaultExceptionFactory()
                   .newNullArgumentException(getClass(), S_ProcName, 0, "schemaObj");
             }
             invokeWhenChosen.choseFloatDef(null);
             cfFormManager.closeCurrentForm();
           } catch (Throwable t) {
             CFConsole.formException(S_FormName, ((CFButton) e.getSource()).getText(), t);
           }
         }
       });
   hboxMenu.getChildren().add(buttonChooseNone);
   buttonChooseSelected = new CFButton();
   buttonChooseSelected.setMinWidth(200);
   buttonChooseSelected.setText("ChooseSelected");
   buttonChooseSelected.setOnAction(
       new EventHandler<ActionEvent>() {
         @Override
         public void handle(ActionEvent e) {
           final String S_ProcName = "handle";
           try {
             ICFBamSchemaObj schemaObj = (ICFBamSchemaObj) javafxSchema.getSchema();
             if (schemaObj == null) {
               throw CFLib.getDefaultExceptionFactory()
                   .newNullArgumentException(getClass(), S_ProcName, 0, "schemaObj");
             }
             ICFBamFloatDefObj selectedInstance = getJavaFXFocusAsFloatDef();
             invokeWhenChosen.choseFloatDef(selectedInstance);
             cfFormManager.closeCurrentForm();
           } catch (Throwable t) {
             CFConsole.formException(S_FormName, ((CFButton) e.getSource()).getText(), t);
           }
         }
       });
   hboxMenu.getChildren().add(buttonChooseSelected);
   if (argFocus != null) {
     dataTable.getSelectionModel().select(argFocus);
   }
   setTop(hboxMenu);
   setCenter(dataTable);
 }
  public CFHBox getHBoxMenu() {
    if (hboxMenu == null) {
      hboxMenu = new CFHBox(10);

      buttonAddExtensionsConf = new CFButton();
      buttonAddExtensionsConf.setMinWidth(200);
      buttonAddExtensionsConf.setText("Add Asterisk extensions.conf...");
      buttonAddExtensionsConf.setOnAction(
          new EventHandler<ActionEvent>() {
            @Override
            public void handle(ActionEvent e) {
              final String S_ProcName = "handle";
              try {
                ICFAsteriskSchemaObj schemaObj = (ICFAsteriskSchemaObj) javafxSchema.getSchema();
                if (schemaObj == null) {
                  throw CFLib.getDefaultExceptionFactory()
                      .newNullArgumentException(getClass(), S_ProcName, 0, "schemaObj");
                }
                ICFAsteriskExtensionsConfObj obj =
                    (ICFAsteriskExtensionsConfObj)
                        schemaObj.getExtensionsConfTableObj().newInstance();
                ICFAsteriskExtensionsConfEditObj edit =
                    (ICFAsteriskExtensionsConfEditObj) (obj.beginEdit());
                if (edit == null) {
                  throw CFLib.getDefaultExceptionFactory()
                      .newNullArgumentException(getClass(), S_ProcName, 0, "edit");
                }
                CFBorderPane frame =
                    javafxSchema
                        .getExtensionsConfFactory()
                        .newAddForm(cfFormManager, obj, getViewEditClosedCallback(), true);
                ICFAsteriskJavaFXExtensionsConfPaneCommon jpanelCommon =
                    (ICFAsteriskJavaFXExtensionsConfPaneCommon) frame;
                jpanelCommon.setPaneMode(CFPane.PaneMode.Add);
                cfFormManager.pushForm(frame);
              } catch (Throwable t) {
                CFConsole.formException(S_FormName, ((CFButton) e.getSource()).getText(), t);
              }
            }
          });
      hboxMenu.getChildren().add(buttonAddExtensionsConf);

      buttonViewSelected = new CFButton();
      buttonViewSelected.setMinWidth(200);
      buttonViewSelected.setText("View Selected");
      buttonViewSelected.setOnAction(
          new EventHandler<ActionEvent>() {
            @Override
            public void handle(ActionEvent e) {
              final String S_ProcName = "handle";
              try {
                ICFAsteriskSchemaObj schemaObj = (ICFAsteriskSchemaObj) javafxSchema.getSchema();
                if (schemaObj == null) {
                  throw CFLib.getDefaultExceptionFactory()
                      .newNullArgumentException(getClass(), S_ProcName, 0, "schemaObj");
                }
                ICFAsteriskExtensionsConfObj selectedInstance = getJavaFXFocusAsExtensionsConf();
                if (selectedInstance != null) {
                  String classCode = selectedInstance.getClassCode();
                  if ("CEXT".equals(classCode)) {
                    CFBorderPane frame =
                        javafxSchema
                            .getExtensionsConfFactory()
                            .newViewEditForm(
                                cfFormManager,
                                selectedInstance,
                                getViewEditClosedCallback(),
                                false);
                    ((ICFAsteriskJavaFXExtensionsConfPaneCommon) frame)
                        .setPaneMode(CFPane.PaneMode.View);
                    cfFormManager.pushForm(frame);
                  } else {
                    throw CFLib.getDefaultExceptionFactory()
                        .newUnsupportedClassException(
                            getClass(),
                            S_ProcName,
                            "selectedInstance",
                            selectedInstance,
                            "ICFAsteriskExtensionsConfObj");
                  }
                }
              } catch (Throwable t) {
                CFConsole.formException(S_FormName, ((CFButton) e.getSource()).getText(), t);
              }
            }
          });
      hboxMenu.getChildren().add(buttonViewSelected);

      buttonEditSelected = new CFButton();
      buttonEditSelected.setMinWidth(200);
      buttonEditSelected.setText("Edit Selected");
      buttonEditSelected.setOnAction(
          new EventHandler<ActionEvent>() {
            @Override
            public void handle(ActionEvent e) {
              final String S_ProcName = "handle";
              try {
                ICFAsteriskSchemaObj schemaObj = (ICFAsteriskSchemaObj) javafxSchema.getSchema();
                if (schemaObj == null) {
                  throw CFLib.getDefaultExceptionFactory()
                      .newNullArgumentException(getClass(), S_ProcName, 0, "schemaObj");
                }
                ICFAsteriskExtensionsConfObj selectedInstance = getJavaFXFocusAsExtensionsConf();
                if (selectedInstance != null) {
                  String classCode = selectedInstance.getClassCode();
                  if ("CEXT".equals(classCode)) {
                    CFBorderPane frame =
                        javafxSchema
                            .getExtensionsConfFactory()
                            .newViewEditForm(
                                cfFormManager,
                                selectedInstance,
                                getViewEditClosedCallback(),
                                false);
                    ((ICFAsteriskJavaFXExtensionsConfPaneCommon) frame)
                        .setPaneMode(CFPane.PaneMode.Edit);
                    cfFormManager.pushForm(frame);
                  } else {
                    throw CFLib.getDefaultExceptionFactory()
                        .newUnsupportedClassException(
                            getClass(),
                            S_ProcName,
                            "selectedInstance",
                            selectedInstance,
                            "ICFAsteriskExtensionsConfObj");
                  }
                }
              } catch (Throwable t) {
                CFConsole.formException(S_FormName, ((CFButton) e.getSource()).getText(), t);
              }
            }
          });
      hboxMenu.getChildren().add(buttonEditSelected);

      buttonDeleteSelected = new CFButton();
      buttonDeleteSelected.setMinWidth(200);
      buttonDeleteSelected.setText("Delete Selected");
      buttonDeleteSelected.setOnAction(
          new EventHandler<ActionEvent>() {
            @Override
            public void handle(ActionEvent e) {
              final String S_ProcName = "handle";
              try {
                ICFAsteriskSchemaObj schemaObj = (ICFAsteriskSchemaObj) javafxSchema.getSchema();
                if (schemaObj == null) {
                  throw CFLib.getDefaultExceptionFactory()
                      .newNullArgumentException(getClass(), S_ProcName, 0, "schemaObj");
                }
                ICFAsteriskExtensionsConfObj selectedInstance = getJavaFXFocusAsExtensionsConf();
                if (selectedInstance != null) {
                  String classCode = selectedInstance.getClassCode();
                  if ("CEXT".equals(classCode)) {
                    CFBorderPane frame =
                        javafxSchema
                            .getExtensionsConfFactory()
                            .newAskDeleteForm(cfFormManager, selectedInstance, getDeleteCallback());
                    ((ICFAsteriskJavaFXExtensionsConfPaneCommon) frame)
                        .setPaneMode(CFPane.PaneMode.View);
                    cfFormManager.pushForm(frame);
                  } else {
                    throw CFLib.getDefaultExceptionFactory()
                        .newUnsupportedClassException(
                            getClass(),
                            S_ProcName,
                            "selectedInstance",
                            selectedInstance,
                            "ICFAsteriskExtensionsConfObj");
                  }
                }
              } catch (Throwable t) {
                CFConsole.formException(S_FormName, ((CFButton) e.getSource()).getText(), t);
              }
            }
          });
      hboxMenu.getChildren().add(buttonDeleteSelected);

      buttonClose = new CFButton();
      buttonClose.setMinWidth(200);
      buttonClose.setText("Close");
      buttonClose.setOnAction(
          new EventHandler<ActionEvent>() {
            @Override
            public void handle(ActionEvent e) {
              final String S_ProcName = "handle";
              try {
                cfFormManager.closeCurrentForm();
              } catch (Throwable t) {
                CFConsole.formException(S_FormName, ((CFButton) e.getSource()).getText(), t);
              }
            }
          });
      hboxMenu.getChildren().add(buttonClose);
    }
    return (hboxMenu);
  }