01: /**
02: * Copyright (C) 2006 Google Inc.
03: *
04: * Licensed under the Apache License, Version 2.0 (the "License");
05: * you may not use this file except in compliance with the License.
06: * You may obtain a copy of the License at
07: *
08: * http://www.apache.org/licenses/LICENSE-2.0
09: *
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: */package com.google.inject;
16:
17: /**
18: * A module contributes configuration information, typically interface
19: * bindings, which will be used to create an {@link Injector}. A guice-based
20: * application is ultimately composed of little more than a set of
21: * {@code Module}s and some bootstrapping code.
22: *
23: * <p>Your Module classes can use a more streamlined syntax by extending
24: * {@link AbstractModule} rather than implementing this interface directly.
25: */
26: public interface Module {
27:
28: /**
29: * Contributes bindings and other configurations to a {@code Binder}.
30: */
31: void configure(Binder binder);
32: }
|