Package com.volantis.shared.metadata.value

Examples of com.volantis.shared.metadata.value.CollectionValue


    // Javadoc inherited.
    protected Collection verify(final MetaDataValue value, final String path) {
        final Collection errors =  super.verify(value, path);
        if (value instanceof CollectionValue) {
            final CollectionValue collectionValue = (CollectionValue) value;
            final Collection contents =
                collectionValue.getContentsAsCollection();
            // check member type constraint
            if (memberTypeConstraint != null) {
                final MetaDataTypeImpl memberType =
                    (MetaDataTypeImpl) memberTypeConstraint.getMemberType();
                final Iterator iter = contents.iterator();
View Full Code Here

TOP

Related Classes of com.volantis.shared.metadata.value.CollectionValue

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.