public void setJavaFXFocus(ICFLibAnyObj value) { final String S_ProcName = "setJavaFXFocus"; if ((value == null) || (value instanceof ICFBamInt32ColObj)) { super.setJavaFXFocus(value); } else { throw CFLib.getDefaultExceptionFactory() .newUnsupportedClassException( getClass(), S_ProcName, "value", value, "ICFBamInt32ColObj"); } ((ICFBamJavaFXInt32ColPaneCommon) javafxAddPane).setJavaFXFocus(value); ICFBamInt32ColObj argFocus = (ICFBamInt32ColObj) value; if ((argFocus != null) && (!argFocus.getIsNew())) { argFocus = (ICFBamInt32ColObj) argFocus.read(true); super.setJavaFXFocus(argFocus); } }
public CFBamJavaFXInt32ColAddForm( ICFFormManager formManager, ICFBamJavaFXSchema argSchema, ICFBamInt32ColObj argFocus, ICFFormClosedCallback closeCallback, boolean argAllowSave) { super(); final String S_ProcName = "construct-schema-focus"; allowSave = argAllowSave; if (formManager == null) { throw CFLib.getDefaultExceptionFactory() .newNullArgumentException(getClass(), S_ProcName, 1, "formManager"); } cfFormManager = formManager; formClosedCallback = closeCallback; 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; if ((argFocus != null) && (!argFocus.getIsNew())) { argFocus = (ICFBamInt32ColObj) argFocus.read(true); javaFXFocus = argFocus; } javafxAddPane = argSchema.getInt32ColFactory().newAddPane(cfFormManager, argFocus); scrollMenu = new ScrollPane(); scrollMenu.setVbarPolicy(ScrollBarPolicy.NEVER); scrollMenu.setHbarPolicy(ScrollBarPolicy.AS_NEEDED); scrollMenu.setFitToHeight(true); scrollMenu.setContent(getHBoxMenu()); setTop(scrollMenu); setCenter(javafxAddPane); }
public void forceCancelAndClose() { 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); } } } if (cfFormManager != null) { if (cfFormManager.getCurrentForm() == this) { cfFormManager.closeCurrentForm(); } } if (formClosedCallback != null) { formClosedCallback.formClosed(null); } }