-
Notifications
You must be signed in to change notification settings - Fork 1.7k
DocumentPublicBindings
Googler edited this page Oct 15, 2020
·
1 revision
To document a Guice module, a good strategy is to describe the public bindings that that module installs, for example:
/**
* Provides {@link FooServiceClient} and derived bindings.
*
* [...]
*
* <p>The following bindings are provided:
*
* <ul>
* <li>{@link FooServiceClient}
* <li>{@link FooServiceClientAuthenticator}
* </ul>
*/
public final class FooServiceClientModule extends AbstractModule {
// ...
}
-
User's Guide
-
Integration
-
Extensions
-
Internals
-
Releases
-
Community