Home | History | Annotate | Download | only in guice

Lines Matching defs:scope

28 import com.google.inject.Scope;
36 * <p>The scope can be initialized with one or more seed values by calling <code>seed(key, value)
38 * test invocation to enter/exit the scope, representing an invocation Scope, and seed configuration
49 public class InvocationScope implements Scope {
60 + " explicitly seeded in this scope by calling"
76 /** Start marking the scope of the Tradefed Invocation. */
82 /** Mark the end of the scope for the Tradefed Invocation. */
90 * the invocation scope to be used.
112 * Seed a key/value that will be available during the TF invocation scope to be used.
122 + "already seeded in this scope. Old value: %s New value: %s",
130 * Seed a key/value that will be available during the TF invocation scope to be used.
140 public <T> Provider<T> scope(final Key<T> key, final Provider<T> unscoped) {