Examples of ImmutableCollectionValue


Examples of com.volantis.shared.metadata.value.immutable.ImmutableCollectionValue

     * Test which ensures that when {@link CollectionValue#getContentsAsCollection} is
     * called on an {@link ImmutableCollectionValue} then the returned {@link Collection}
     * is immutable.
     */
    public void testGetContentsAsCollectionReturnsImmutableCollectionOnImmutable(){
        ImmutableCollectionValue immutableCollection = (ImmutableCollectionValue)
                getImmutableInhibitor();
        Collection collection = immutableCollection.getContentsAsCollection();
        doImmutableCollectionTest(collection);
    }
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.