Hi, I am trying to install my own RenderingEngine implementation, however I am not accustomed to the ServiceLoader concept:
> ServiceLoader<RenderingEngine> reLoader = > ServiceLoader.loadInstalled(RenderingEngine.class); the ServiceLoader doesn't e.g. contain my CairoRenderingEngine. Would it be enough to simply create a META-INF directory with a single file in it, similar to what has been done for pisces? Is there any way to influence the iteration-order? If possible I would prefer my RendeingEngine to be tried before Pisces when its mature and complete, at least it should be configureable without passing the cmd-line parameter every time. Whats the purpose of the ServiceLoader, wouldn't it be possible to simply load the class specified on the command-line directly? Thank you in advance, Clemens