Examples of IRepositoryProvider


Examples of org.apache.felix.sigil.common.repository.IRepositoryProvider

        {
            for (IConfigurationElement c : e.getConfigurationElements())
            {
                if (alias.equals(c.getAttribute("alias")))
                {
                    IRepositoryProvider provider = (IRepositoryProvider) c.createExecutableExtension("class");
                    IRepositoryType type = ExtensionUtils.toRepositoryType(e, c);
                    return new EclipseRepositoryProviderWrapper(provider, type);
                }
            }
        }
View Full Code Here

Examples of org.apache.felix.sigil.common.repository.IRepositoryProvider

            }
        }

        try
        {
            IRepositoryProvider instance = (IRepositoryProvider) (Class.forName(provider).newInstance());
            IBundleRepository repository = instance.createRepository(name, repo);
            return repository;
        }
        catch (Exception e)
        {
            String msg = "failed to create repository: ";
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.