Package org.apache.struts.action

Examples of org.apache.struts.action.ActionFormBeans


     * @param app the servlet context
     * @deprecated This will be removed in VelocityTools 1.2
     */
    public static FormBeanConfig getFormBean(String name, ServletContext app)
    {
        ActionFormBeans formBeans = getActionFormBeans(app);
        if (formBeans == null)
        {
            return null;
        }
        return formBeans.findFormBean(name);

    }
View Full Code Here


     * @param application the servlet context
     * @deprecated This will be removed in VelocityTools 1.2
     */
    public static FormBeanConfig getFormBean(String name, ServletContext app)
    {
        ActionFormBeans formBeans = getActionFormBeans(app);
        if (formBeans == null)
        {
            return null;
        }
        return formBeans.findFormBean(name);

    }
View Full Code Here

     *
     * @param name Logical name of the requested form bean definition
     */
    public ActionFormBean getFormBean(String name) {

        ActionFormBeans formBeans = getActionFormBeans();

        if (formBeans == null)
            return null;
        return formBeans.findFormBean(name);

    }
View Full Code Here

     * @param application the servlet context
     * @deprecated This will be removed in VelocityTools 1.2
     */
    public static FormBeanConfig getFormBean(String name, ServletContext app)
    {
        ActionFormBeans formBeans = getActionFormBeans(app);
        if (formBeans == null)
        {
            return null;
        }
        return formBeans.findFormBean(name);

    }
View Full Code Here

TOP

Related Classes of org.apache.struts.action.ActionFormBeans

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.