Why service provider method is called "provider", but not "provide"?

2020-11-20 Thread Alex Orlov
Hello all,   According to this tutorial https://www.logicbig.com/tutorials/core-java-tutorial/modules/service-provider-method.html we can declare in module-info provider class with "provider" method. For example,    .. public class TheServiceProvider {    public static AService provider()

Re: JPMS layer graph type

2020-11-20 Thread Alan Bateman
On 17/11/2020 19:44, Alex Orlov wrote: Hello all, I try to determine the type of JPMS layers graph and as I understand it is a directed acyclic graph. Could anyone say if this is right or wrong. Yes, the graph of module layers is a DAG. -Alan.

Re: Why service provider method is called "provider", but not "provide"?

2020-11-20 Thread Remi Forax
- Mail original - > De: "Alex Sviridov" > À: "jigsaw-dev" > Envoyé: Vendredi 20 Novembre 2020 12:48:21 > Objet: Why service provider method is called "provider", but not "provide"? > Hello all, Hi Alex, >  > According to this tutorial >