Package org.apache.geronimo.validator

Examples of org.apache.geronimo.validator.ValidationContext


        super(definition);
    }

    public ValidationContext validate() {
        if (context == null) {
            context = new ValidationContext(definition.getQName().toString());
            walkTree();
        }
        return context;
    }
View Full Code Here


        }
        return context;
    }

    public boolean isValid() {
        ValidationContext context = validate();
        return !context.hasFailures() && !context.hasErrors();
    }
View Full Code Here

        super(definition);
    }

    public ValidationContext validate() {
        if (context == null) {
            context = new ValidationContext(definition.getQName().toString());
            walkTree();
        }
        return context;
    }
View Full Code Here

        }
        return context;
    }

    public boolean isValid() {
        ValidationContext context = validate();
        return !context.hasFailures() && !context.hasErrors();
    }
View Full Code Here

TOP

Related Classes of org.apache.geronimo.validator.ValidationContext

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.