Visit an implementation of a service. @param service the internal name of the service. @param providers the internal names of the implementations of the service (there is at least one provider).
(final String service, final String... providers)
| 158 | * one provider). |
| 159 | */ |
| 160 | public void visitProvide(final String service, final String... providers) { |
| 161 | if (mv != null) { |
| 162 | mv.visitProvide(service, providers); |
| 163 | } |
| 164 | } |
| 165 | |
| 166 | /** |
| 167 | * Visits the end of the module. This method, which is the last one to be called, is used to |