Package org.apache.hivemind.definition

Examples of org.apache.hivemind.definition.ImplementationDefinition


    /**
     * @see org.apache.hivemind.definition.ServicePointDefinition#getDefaultImplementation()
     */
    public ImplementationDefinition getDefaultImplementation()
    {
        ImplementationDefinition defaulImplementation = null;
        for (Iterator iter = _implementations.iterator(); iter.hasNext();)
        {
            ImplementationDefinition impl = (ImplementationDefinition) iter.next();
            if (defaulImplementation == null)
                defaulImplementation = impl;
            if (impl.isDefault()) {
                defaulImplementation = impl;
                break;
            }
        }
       
View Full Code Here

TOP

Related Classes of org.apache.hivemind.definition.ImplementationDefinition

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.