Uses of Class
org.apache.struts.config.FormBeanConfig
Packages that use FormBeanConfig
Package
Description
The action package is the core of the struts framework,
providing the "Controller" aspect of a MVC model.
The "config" package contains configuration objects that correspond to
elements that may be specified in the
struts-config.xml
module configuration file.Provides default implementation classes for the
configuration objects.
The Utilities package provides a variety of families of classes,
to solve problems that are commonly encountered in building web applications.
The validator package provides a series of classes to validate
ActionForm type of input.-
Uses of FormBeanConfig in org.apache.struts.action
Subclasses of FormBeanConfig in org.apache.struts.actionModifier and TypeClassDescriptionclassAn ActionFormBean is the definition of a form bean that is loaded from a<form-bean>element in the Struts configuration file.Fields in org.apache.struts.action declared as FormBeanConfigModifier and TypeFieldDescriptionprotected FormBeanConfigDynaActionFormClass.configThe form bean configuration information for this class.Methods in org.apache.struts.action that return FormBeanConfigModifier and TypeMethodDescriptionprotected FormBeanConfigActionServlet.processFormBeanConfigClass(FormBeanConfig beanConfig, ModuleConfig moduleConfig) Checks if the current beanConfig is using the correct class based on the class of its ancestor form bean config.Methods in org.apache.struts.action with parameters of type FormBeanConfigModifier and TypeMethodDescriptionstatic DynaActionFormClassDynaActionFormClass.createDynaActionFormClass(FormBeanConfig config) Return theDynaActionFormClassinstance for the specified form bean configuration instance.voidDynaActionForm.initialize(FormBeanConfig config) Initialize the specified form bean.protected voidDynaActionFormClass.introspect(FormBeanConfig config) Introspect our form bean configuration to identify the supported properties.protected FormBeanConfigActionServlet.processFormBeanConfigClass(FormBeanConfig beanConfig, ModuleConfig moduleConfig) Checks if the current beanConfig is using the correct class based on the class of its ancestor form bean config.protected voidActionServlet.processFormBeanExtension(FormBeanConfig beanConfig, ModuleConfig moduleConfig) Extend the form bean's configuration as necessary.Constructors in org.apache.struts.action with parameters of type FormBeanConfigModifierConstructorDescriptionDynaActionFormClass(FormBeanConfig config) Construct a newDynaActionFormClassfor the specified form bean configuration. -
Uses of FormBeanConfig in org.apache.struts.config
Methods in org.apache.struts.config that return FormBeanConfigModifier and TypeMethodDescriptionModuleConfig.findFormBeanConfig(String name) Return the form bean configuration for the specified key, if any; otherwise returnnull.ModuleConfig.findFormBeanConfigs()Return the form bean configurations for this module.Methods in org.apache.struts.config with parameters of type FormBeanConfigModifier and TypeMethodDescriptionvoidModuleConfig.addFormBeanConfig(FormBeanConfig config) Add a newFormBeanConfiginstance to the set associated with this module.protected voidFormBeanConfig.inheritFormProperties(FormBeanConfig config) Compare the form properties of this bean with that of the given and copy those that are not present.voidFormBeanConfig.inheritFrom(FormBeanConfig config) Inherit values that have not been overridden from the provided config object.voidModuleConfig.removeFormBeanConfig(FormBeanConfig config) Remove the specified form bean configuration instance. -
Uses of FormBeanConfig in org.apache.struts.config.impl
Fields in org.apache.struts.config.impl with type parameters of type FormBeanConfigModifier and TypeFieldDescriptionprotected HashMap<String, FormBeanConfig> ModuleConfigImpl.formBeansThe set of form bean configurations for this module, if any, keyed by thenameproperty.Methods in org.apache.struts.config.impl that return FormBeanConfigModifier and TypeMethodDescriptionModuleConfigImpl.findFormBeanConfig(String name) Return the form bean configuration for the specified key, if any; otherwise returnnull.ModuleConfigImpl.findFormBeanConfigs()Return the form bean configurations for this module.Methods in org.apache.struts.config.impl with parameters of type FormBeanConfigModifier and TypeMethodDescriptionvoidModuleConfigImpl.addFormBeanConfig(FormBeanConfig config) Add a newFormBeanConfiginstance to the set associated with this module.voidModuleConfigImpl.removeFormBeanConfig(FormBeanConfig config) Remove the specified form bean configuration instance. -
Uses of FormBeanConfig in org.apache.struts.util
Methods in org.apache.struts.util with parameters of type FormBeanConfigModifier and TypeMethodDescriptionstatic ActionFormRequestUtils.createActionForm(FormBeanConfig config, ActionServlet servlet) Create and return anActionForminstance appropriate to the information inconfig. -
Uses of FormBeanConfig in org.apache.struts.validator
Methods in org.apache.struts.validator with parameters of type FormBeanConfigModifier and TypeMethodDescriptionvoidBeanValidatorForm.initialize(FormBeanConfig formBeanConfig) Perform intialization of the ActionForm.