Class Plugin.Factory.Simple

    • Field Summary

      Fields 
      Modifier and Type Field Description
      private Plugin plugin
      The plugin to provide.
    • Constructor Summary

      Constructors 
      Constructor Description
      Simple​(Plugin plugin)
      Creates a simple plugin factory.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      Plugin make()
      Returns a plugin that can be used for a transformation and which is subsequently closed.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • plugin

        private final Plugin plugin
        The plugin to provide.
    • Constructor Detail

      • Simple

        public Simple​(Plugin plugin)
        Creates a simple plugin factory.
        Parameters:
        plugin - The plugin to provide.
    • Method Detail

      • make

        public Plugin make()
        Returns a plugin that can be used for a transformation and which is subsequently closed.
        Specified by:
        make in interface Plugin.Factory
        Returns:
        The plugin to use for type transformations.