Home | History | Annotate | Download | only in dagger

Lines Matching defs:get

21  * the first call to {@code get()} and remembers that same value for all
22 * subsequent calls to {@code get()}.
68 * integer. It calls {@code Provider.get()} 3 times and prints each result:
75 * System.out.println(provider.get());
76 * System.out.println(provider.get());
77 * System.out.println(provider.get());
82 * a new value is computed each time {@code Provider.get()} is used:<pre><code>
94 * it calls {@code Lazy.get()} 3 times and prints each result:<pre><code>
100 * System.out.println(lazy.get());
101 * System.out.println(lazy.get());
102 * System.out.println(lazy.get());
154 T get();