Package org.jboss.as.pojo.service

Examples of org.jboss.as.pojo.service.BeanInfo


    public Class<?> getType(ConfigVisitor visitor, ConfigVisitorNode previous) {
        if (previous instanceof ValueConfig == false)
            throw new IllegalArgumentException("Previous node is not a value config!");

        ValueConfig vc = (ValueConfig) previous;
        BeanInfo beanInfo = visitor.getBeanInfo();
        Method m = beanInfo.findMethod(methodName, Configurator.getTypes(parameters));
        return m.getParameterTypes()[vc.getIndex()];
    }
View Full Code Here

TOP

Related Classes of org.jboss.as.pojo.service.BeanInfo

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.