Package org.castor.core.util

Examples of org.castor.core.util.IdentitySet.clear()


        set.add(new Integer(123));
        assertFalse(set.isEmpty());
        assertTrue(set.size() == 1);
       
        set.clear();
        assertTrue(set.isEmpty());
        assertTrue(set.size() == 0);
    }

    public void testContains() {
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.