Package org.apache.cocoon.validation

Examples of org.apache.cocoon.validation.Schema


      File file = new File( args[0] );
      if ( !file.exists () ) throw new Exception("Error: schema file not found !");
     InputStream istrm = new FileInputStream ( file );
     InputSource is = new InputSource ( istrm );
     SchemaFactory schf = SchemaFactory.lookup( SchemaFactory.NAMESPACE_SCHEMATRON );
     Schema sch = schf.compileSchema( is );
     Validator validator = sch.newValidator();

     // set preprocessor parameters
      if (args.length > 1)
         validator.setProperty("phase", new String(args[1]));
View Full Code Here


    File file = new File( fileLocation );
    if ( !file.exists () ) throw new RuntimeException("Error: schema file not found !");
   InputStream istrm = new FileInputStream ( file );
   InputSource is = new InputSource ( istrm );
   SchemaFactory schf = SchemaFactory.lookup ( SchemaFactory.NAMESPACE_SCHEMATRON );
   Schema sch = schf.compileSchema ( is );
   validator_ = sch.newValidator()
  }
View Full Code Here

TOP

Related Classes of org.apache.cocoon.validation.Schema

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.