null
Return the form bean configuration for the specified key, if any; otherwise return null. @param name Name of the form bean configuration to return
779780781782783784785786787788789
} String formName = formType.substring( lastQualifier + 1 ); formName = Character.toLowerCase( formName.charAt( 0 ) ) + formName.substring( 1 ); if ( moduleConfig.findFormBeanConfig( formName ) != null ) { formName = formType.replace( '.', '_' ).replace( '$', '_' ); assert moduleConfig.findFormBeanConfig( formName ) == null : formName; }
782783784785786787788789790791792
formName = Character.toLowerCase( formName.charAt( 0 ) ) + formName.substring( 1 ); if ( moduleConfig.findFormBeanConfig( formName ) != null ) { formName = formType.replace( '.', '_' ).replace( '$', '_' ); assert moduleConfig.findFormBeanConfig( formName ) == null : formName; } return formName; }
138139140141142143144145146147148
// Retrieve the requested object to be exposed Object object = null; String selector = null; if (formBean != null) { selector = formBean; object = config.findFormBeanConfig(formBean); } else if (forward != null) { selector = forward; object = config.findForwardConfig(forward); } else if (mapping != null) { selector = mapping;
775776777778779780781782783784785
778779780781782783784785786787788
455456457458459460461462463464465
if (name == null) { return; } // Look up the FormBeanConfig we are processing FormBeanConfig fbConfig = moduleConfig.findFormBeanConfig(name); if (fbConfig == null) { throw new IllegalArgumentException("Cannot find form bean '" + name + "' configuration"); }
191192193194195196197198199200201
181182183184185186187188189190191