blob: 20e740a95ccf715b86bc4cdd065ea84594d47795 [file] [log] [blame]
phopkinsaff72e02008-12-30 21:55:49 +00001/**
2 * Copyright (C) 2008 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 */
16
17package com.google.inject.grapher;
18
19import com.google.inject.Key;
20
21import java.lang.reflect.Member;
22
23/**
24 * Interface for a service that provides nice {@link String}s that we can
Sam Berlin6b3086d2014-07-20 13:03:09 -040025 * display in the graph for the types that come up in
26 * {@link com.google.inject.Binding}s.
phopkinsaff72e02008-12-30 21:55:49 +000027 *
28 * @author phopkins@gmail.com (Pete Hopkins)
29 */
30public interface NameFactory {
31 String getMemberName(Member member);
32 String getClassName(Key<?> key);
phopkins2473de52009-02-04 04:59:10 +000033 String getInstanceName(Object instance);
phopkinsaff72e02008-12-30 21:55:49 +000034 String getAnnotationName(Key<?> key);
35 String getSourceName(Object source);
36}