blob: 80d0d43cebf91bd3eca1c5f7cb94219c1cb5b677 [file] [log] [blame]
crazybobleeb8cf1e52007-02-02 21:48:16 +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 */
crazybobleea6e73982007-02-02 00:21:07 +000016
limpbizkit5ae41eb2009-06-06 17:51:27 +000017package com.google.inject.internal;
limpbizkit9dc32d42008-06-15 11:29:10 +000018
crazybobleea6e73982007-02-02 00:21:07 +000019/**
20 * @author crazybob@google.com (Bob Lee)
21*/
22interface ContextualCallable<T> {
limpbizkit163c48a2008-06-16 02:58:08 +000023 T call(InternalContext context) throws ErrorsException;
crazybobleea6e73982007-02-02 00:21:07 +000024}