Home | History | Annotate | Download | only in spi

Lines Matching defs:source

28  * source} where the dependency was bound.
35 private final Object source;
37 public DependencyAndSource(Dependency<?> dependency, Object source) {
39 this.source = source;
56 * was just-in-time, there is no valid binding source, so this describes the
60 if (source instanceof Class) {
61 return StackTraceElements.forType((Class) source).toString();
62 } else if (source instanceof Member) {
63 return StackTraceElements.forMember((Member) source).toString();
65 return source.toString();
72 Object source = getBindingSource();
74 return "Dependency: " + dep + ", source: " + source;
76 return "Source: " + source;