public interface TypeTransformerLoader
Implement this interface to register multiple TypeTransformers. They are loaded with the ServiceLoader of java. Thus a so called provider-configuration file has to be placed in the resource directory META-INF/services/. The name of this file needs to be * de.uni_mannheim.informatik.dws.melt.matching_base.typetransformer.TypeTransformerLoader and the content should be a list of fully-qualified binary names of concrete classes which implement TypeTransformer interface, one per line.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Call the addTransformer method of the static TypeTransformerRegistry to add multiple TypeTransformers at the same time.
  • Method Details

    • registerTypeTransformers

      void registerTypeTransformers()
      Call the addTransformer method of the static TypeTransformerRegistry to add multiple TypeTransformers at the same time.