Package org.gwtoolbox.ioc.core.rebind.processor.javaconfig

Examples of org.gwtoolbox.ioc.core.rebind.processor.javaconfig.JavaConfigClassWrapper


            SourceWriter writer,
            TypeOracle typeOracle,
            ComponentContainerOracle oracle,
            GeneratorContext context) throws UnableToCompleteException {

        JavaConfigClassWrapper wrapper = oracle.getJavaConfigClassWrapper();
        if (wrapper == null) {
            return;
        }
        List<JavaConfigConfiguredProperty> configuredProperties = wrapper.getConfiguredProperties();
        for (JavaConfigConfiguredProperty configuredProperty : configuredProperties) {
            JMethod method = configuredProperty.getMethod();
            String propertyName = configuredProperty.getPropertyName();
            PropertyReferenceValue value = configuredProperty.isMeta() ?
                    new RuntimePropertyReferenceValue(propertyName) : new PropertyReferenceValue(propertyName);
View Full Code Here

TOP

Related Classes of org.gwtoolbox.ioc.core.rebind.processor.javaconfig.JavaConfigClassWrapper

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.