Package org.gwtoolbox.ioc.core.client.annotation

Examples of org.gwtoolbox.ioc.core.client.annotation.Component.disposeMethodName()


        definition.setLazy(component.lazyInit());
        String initMethodName = component.initMethodName();
        if (!"".equals(initMethodName)) {
            definition.setInitMethodName(initMethodName);
        }
        String disposeMethodName = component.disposeMethodName();
        if (!"".equals(disposeMethodName)) {
            definition.setDisposeMethodName(disposeMethodName);
        }

        componentProcessor.process(logger, definition, typeOracle);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.