blob: 94160e53315f9893c962d48dda47097379fb8b59 [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/**
crazybobleef33d23e2007-02-12 04:17:48 +000020 * A scope which bound objects can reside in. Mapping scopes by name with
21 * {@link ContainerBuilder#scope} can help avoid compile time dependencies
22 * on the {@code Scope} implementation (if desired) and enable the use of the
23 * {@link Scoped} annotation.
crazyboblee66b415a2006-08-25 02:01:19 +000024 *
crazybobleef33d23e2007-02-12 04:17:48 +000025 * <p>Scope implementations should override {@link #toString} in the returned
26 * factory and include the creator's {#toString} output. Doing so aids
27 * debugging. They should also override their own {@link #toString}
28 * method.
crazybobleea6e73982007-02-02 00:21:07 +000029 *
crazyboblee63b592b2007-01-25 02:45:24 +000030 * @author crazybob@google.com (Bob Lee)
crazyboblee66b415a2006-08-25 02:01:19 +000031 */
crazyboblee63b592b2007-01-25 02:45:24 +000032public interface Scope {
crazyboblee66b415a2006-08-25 02:01:19 +000033
34 /**
kevinb9na99dca72007-02-11 04:48:57 +000035 * Scopes a factory. The returned factory returns objects from this scope. If
36 * an object does not exist in this scope, the factory can use the given
crazyboblee63b592b2007-01-25 02:45:24 +000037 * creator to create one.
crazyboblee66b415a2006-08-25 02:01:19 +000038 *
crazyboblee63b592b2007-01-25 02:45:24 +000039 * @param key binding key
40 * @param creator creates new instances as needed
41 * @return a new factory which only delegates to the given factory when an
kevinb9na99dca72007-02-11 04:48:57 +000042 * instance of the requested object doesn't already exist in the scope
crazyboblee66b415a2006-08-25 02:01:19 +000043 */
crazyboblee63b592b2007-01-25 02:45:24 +000044 public <T> Factory<T> scope(Key<T> key, Factory<T> creator);
crazyboblee66b415a2006-08-25 02:01:19 +000045}