Package com.volantis.mcs.model.validation

Examples of com.volantis.mcs.model.validation.Pruneable


        List diagnostics = validator.getDiagnostics();

        // 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

Related Classes of com.volantis.mcs.model.validation.Pruneable

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.