Package au.edu.qut.yawl.unmarshal

Examples of au.edu.qut.yawl.unmarshal.SchemaForSchemaValidator


     * Helper method to set the primary Schema for use later.
     * @param schemaStr the entire schema as a string
     */
    public void setPrimarySchema(String schemaStr) throws YSchemaBuildingException, YSyntaxException {
        //first of all check that the schema itself is valid
        SchemaForSchemaValidator tmp = SchemaForSchemaValidator.getInstance();
        String results = tmp.validateSchema(schemaStr);
        if (results.length() > 0) {
            throw new YSyntaxException(results);
        }

        //now set the schema
View Full Code Here

TOP

Related Classes of au.edu.qut.yawl.unmarshal.SchemaForSchemaValidator

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.