Package org.springmodules.validation.valang.functions

Examples of org.springmodules.validation.valang.functions.AbstractInitializableFunction


        if (!AbstractInitializableFunction.class.isInstance(bean)) {
            logger.warn("Bean '" + name + "' is not of a '" + AbstractInitializableFunction.class.getName() + "' type");
            return null;
        }
       
        AbstractInitializableFunction function = (AbstractInitializableFunction) bean;
        function.init(arguments, line, column);
       
        return function;
    }
View Full Code Here

TOP

Related Classes of org.springmodules.validation.valang.functions.AbstractInitializableFunction

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.