blob: 2472ee6ca445a6611a18722e070ec684845b25ef [file] [log] [blame]
crazybobleeabc4dd02007-02-01 01:44:36 +00001/**
2 * Copyright (C) 2006 Google Inc.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
crazyboblee66b415a2006-08-25 02:01:19 +000016
17package com.google.inject;
18
crazyboblee66b415a2006-08-25 02:01:19 +000019/**
crazyboblee63b592b2007-01-25 02:45:24 +000020 * A scope which bound objects can reside in. Add a new scope using {@link
21 * com.google.inject.ContainerBuilder#put(String, Scope)} and reference it from
22 * bindings using its name.
crazyboblee66b415a2006-08-25 02:01:19 +000023 *
crazybobleea6e73982007-02-02 00:21:07 +000024 * <p>Scope implementations should override {@code toString()} and include the
25 * creator's {@code toString()} output. Doing so aids debugging.
26 *
crazyboblee63b592b2007-01-25 02:45:24 +000027 * @author crazybob@google.com (Bob Lee)
crazyboblee66b415a2006-08-25 02:01:19 +000028 */
crazyboblee63b592b2007-01-25 02:45:24 +000029public interface Scope {
crazyboblee66b415a2006-08-25 02:01:19 +000030
31 /**
crazyboblee63b592b2007-01-25 02:45:24 +000032 * Scopes a factory. The returned factory returns objects from this scope.
33 * If an object does not exist in this scope, the factory can use the given
34 * creator to create one.
crazyboblee66b415a2006-08-25 02:01:19 +000035 *
crazyboblee63b592b2007-01-25 02:45:24 +000036 * @param key binding key
37 * @param creator creates new instances as needed
38 * @return a new factory which only delegates to the given factory when an
39 * instance of the requested object doesn't already exist in the scope
crazyboblee66b415a2006-08-25 02:01:19 +000040 */
crazyboblee63b592b2007-01-25 02:45:24 +000041 public <T> Factory<T> scope(Key<T> key, Factory<T> creator);
crazyboblee66b415a2006-08-25 02:01:19 +000042}