Package org.springframework.osgi.util.internal

Examples of org.springframework.osgi.util.internal.MapBasedDictionary.elements()


    MapBasedDictionary wrapper = new MapBasedDictionary();
    wrapper.putAll(dict);

    Enumeration enm1 = dict.elements();
    Enumeration enm2 = wrapper.elements();

    while (enm1.hasMoreElements()) {
      assertTrue(enm2.hasMoreElements());
      assertEquals(enm1.nextElement(), enm2.nextElement());
    }
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.