Package org.apache.felix.scr.impl.helper

Examples of org.apache.felix.scr.impl.helper.ComponentMethods


   
    protected TargetedPID m_targetedPID;

    public ComponentFactoryImpl( ComponentContainer<S> container )
    {
        super( container, new ComponentMethods() );
        m_componentInstances = new IdentityHashMap<SingleComponentManager<S>, SingleComponentManager<S>>();
        m_configuration = new HashMap<String, Object>();
    }
View Full Code Here


        int pidCount = metadata.getConfigurationPid().size();
        this.m_targetedPids = new TargetedPID[pidCount];
        this.m_configurations = new Dictionary[pidCount];
        this.m_changeCount = new Long[pidCount];
        this.m_components = new HashMap<String, AbstractComponentManager<S>>();
        this.m_componentMethods = new ComponentMethods();
        this.m_enabled = false;
    }
View Full Code Here

        private Map<String, Object> m_configuration;


        public MockImmediateComponentManager( ComponentContainer container )
        {
            super( container, new ComponentMethods() );
        }
View Full Code Here

        private Dictionary m_configuration;


        public MockImmediateComponentManager( BundleComponentActivator activator, ComponentHolder componentHolder, ComponentMetadata metadata )
        {
            super( activator, componentHolder, metadata, new ComponentMethods() );
        }
View Full Code Here

    public ConfigurableComponentHolder( final BundleComponentActivator activator, final ComponentMetadata metadata )
    {
        this.m_activator = activator;
        this.m_componentMetadata = metadata;
        this.m_components = new HashMap<String, SingleComponentManager<S>>();
        this.m_componentMethods = new ComponentMethods();
        this.m_singleComponent = createComponentManager();
        this.m_enabled = false;
    }
View Full Code Here

TOP

Related Classes of org.apache.felix.scr.impl.helper.ComponentMethods

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.