Examples of MutableEnumeratedConstraint


Examples of com.volantis.shared.metadata.type.constraint.mutable.MutableEnumeratedConstraint

     * Test which ensures that when {@link EnumeratedConstraintImpl#getEnumeratedValues} is
     * called on a {@link EnumeratedConstraintImpl} then the returned
    * {@link java.util.Collection} is immutable.
     */
    public void testGetEnumeratedValuesReturnsImmutableListOnMutable(){
        MutableEnumeratedConstraint mutableConstraint = (MutableEnumeratedConstraint)
                getMutableInhibitor();
        List list = mutableConstraint.getEnumeratedValues();
        MetaDataTestCaseHelper.ensureListIsImmutable(list);
    }
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.