Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for newRelaxNgSchemaFactory (0.07 sec)

  1. src/main/java/org/codelibs/core/xml/SchemaFactoryUtil.java

         */
        public static SchemaFactory newRelaxNgSchemaFactory() {
            return newRelaxNgSchemaFactory(false);
        }
    
        /**
         * Creates a {@link SchemaFactory} for RELAX NG.
         *
         * @param external
         *            If {@code true}, external access is allowed.
         * @return a {@link SchemaFactory} for RELAX NG
         */
        public static SchemaFactory newRelaxNgSchemaFactory(final boolean external) {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/xml/SchemaUtil.java

         * @return {@link Schema}
         */
        public static Schema newRelaxNgSchema(final File schema) {
            assertArgumentNotNull("schema", schema);
            return newSchema(SchemaFactoryUtil.newRelaxNgSchemaFactory(), schema);
        }
    
        /**
         * Generates a {@link Schema} for RELAX NG from a {@link Source}.
         *
         * @param schema
         *            {@link Source} to load the RELAX NG. Must not be {@literal null}.
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 5.5K bytes
    - Viewed (0)
Back to top