blob: 37a7130748517ca07388d84060a1a064d9deabab [file] [log] [blame]
/**
* Copyright (C) 2006 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.google.inject;
/**
* A scope which bound objects can reside in. Scopes a given {@link Locator}.
*
* <p>Scope implementations should override {@code toString()} in the returned
* locator and include the unscoped locator's {@code toString()} output. Doing
* so aids debugging. They should also override their own {@code toString()}
* method.
*
* @author crazybob@google.com (Bob Lee)
*/
public interface Scope {
/**
* Scopes a locator. The returned locator returns objects from this scope. If
* an object does not exist in this scope, the locator can use the given
* unscoped locator to retrieve one.
*
* @param key binding key
* @param unscoped locates an instance when one doesn't already exist in this
* scope.
* @return a new locator which only delegates to the given unscoped locator
* when an instance of the requested object doesn't already exist in this
* scope
*/
public <T> Locator<T> scope(Key<T> key, Locator<T> unscoped);
}