- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for SchemaFactoryUtil (0.06 sec)
-
src/main/java/org/codelibs/core/xml/SchemaFactoryUtil.java
/** * Utility class for {@link SchemaFactory}. * * @author koichik */ public abstract class SchemaFactoryUtil { private static final Logger logger = Logger.getLogger(SchemaFactoryUtil.class); /** * Do not instantiate. */ protected SchemaFactoryUtil() { } /** * Creates a {@link SchemaFactory} for W3C XML Schema. *
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/xml/SchemaUtil.java
* @return {@link Schema} */ public static Schema newW3cXmlSchema(final File schema) { assertArgumentNotNull("schema", schema); return newSchema(SchemaFactoryUtil.newW3cXmlSchemaFactory(), schema); } /** * Generates a {@link Schema} for W3C XML Schema from a {@link Source}. * * @param schema
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 5.5K bytes - Viewed (0)