Package org.xmatthew.spy2servers.core.context

Examples of org.xmatthew.spy2servers.core.context.ComponentContext


    public void afterPropertiesSet() throws Exception {
        if (context == null) {
            LOGGER.error("context is null");
        }
       
        ComponentContext componentContext;
        componentContext = ComponentContextUtils.getComponentContext(context);
       
        //start CoreComponent
        fireComponent(this, componentContext);
       
        for (Component component : componentContext.getComponents()) {
            if (component instanceof CoreComponent) {
                continue;
            }
            fireComponent(component, componentContext);
        }
View Full Code Here

TOP

Related Classes of org.xmatthew.spy2servers.core.context.ComponentContext

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.