Package org.apache.felix.connect.felix.framework.util

Examples of org.apache.felix.connect.felix.framework.util.StringComparator


    public CapabilitySet(List<String> indexProps, boolean caseSensitive)
    {
        m_indices = (caseSensitive)
            ? new TreeMap<String, Map<Object, Set<BundleCapability>>>()
            : new TreeMap<String, Map<Object, Set<BundleCapability>>>(
                        new StringComparator(false));
        for (int i = 0; (indexProps != null) && (i < indexProps.size()); i++)
        {
            m_indices.put(
                indexProps.get(i), new HashMap<Object, Set<BundleCapability>>());
        }
View Full Code Here

TOP

Related Classes of org.apache.felix.connect.felix.framework.util.StringComparator

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.