Package org.iso_relax.verifier
Interface VerifierFactoryLoader
-
public interface VerifierFactoryLoaderA class that provides information about the verifier implementation.Implementations of this interface are discovered through
META-INF/services, just like JAXP. This object then provides VerifierFactory implementation for the specified schema language.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description VerifierFactorycreateFactory(java.lang.String schemaLanguage)returns a VerifierFactory that supports the specified schema language, or returns null if it's not supported.
-
-
-
Method Detail
-
createFactory
VerifierFactory createFactory(java.lang.String schemaLanguage)
returns a VerifierFactory that supports the specified schema language, or returns null if it's not supported.
-
-