Package com.volantis.mcs.model.validation

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


        // Prepare each proxy for validation.
        PREPARE_4_VALIDATION.prepare(proxy);

        // Validate the model.
        Validator validator = MODEL_FACTORY.createValidator();
        Validatable validatable = (Validatable) proxy.getModelObject();
        validator.validate(validatable);

        // Get the diagnostics and iterate over them associating them with
        // the relevant proxy.
        List diagnostics = validator.getDiagnostics();
View Full Code Here

TOP

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

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.