Package com.volantis.mcs.model.validation

Examples of com.volantis.mcs.model.validation.Pruneable.prune()


        // If we are pruning and this validatable object is also prunable, then
        // prune it before we report any errors.
        if (pruning && validatable instanceof Pruneable) {
            Pruneable pruneable = (Pruneable) validatable;
            pruneable.prune(validator.getValidationContext(), diagnostics);
        }

        if (!diagnostics.isEmpty()) {
            StringBuffer buffer = new StringBuffer();
            boolean foundError = false;
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.