Package | Description |
---|---|
dagger.model |
This package contains the APIs that are core to Dagger's internal model of bindings and the
binding graph.
|
dagger.spi |
This package contains the Service Provider interface (SPI) to the
dagger.model APIs at
annotation-processing-time. |
Modifier and Type | Interface and Description |
---|---|
static interface |
BindingGraph.BindingNode
A binding node in the binding graph.
|
Modifier and Type | Class and Description |
---|---|
static class |
BindingGraph.MissingBindingNode
A node in the binding graph that represents a missing binding for a key in a component.
|
Modifier and Type | Method and Description |
---|---|
com.google.common.collect.ImmutableSet<BindingGraph.MaybeBindingNode> |
BindingGraph.entryPointBindingNodes()
Returns the binding nodes or missing binding nodes that directly satisfy entry points.
|
Modifier and Type | Method and Description |
---|---|
com.google.common.collect.ImmutableSet<BindingGraph.DependencyEdge> |
BindingGraph.entryPointEdgesDependingOnBindingNode(BindingGraph.MaybeBindingNode bindingNode)
Returns the edges for entry points that transitively depend on a binding or missing binding for
a key.
|
Modifier and Type | Method and Description |
---|---|
void |
DiagnosticReporter.reportBinding(javax.tools.Diagnostic.Kind diagnosticKind,
BindingGraph.MaybeBindingNode bindingNode,
java.lang.String message)
Reports a diagnostic for a binding or missing binding.
|
void |
DiagnosticReporter.reportBinding(javax.tools.Diagnostic.Kind diagnosticKind,
BindingGraph.MaybeBindingNode bindingNode,
java.lang.String messageFormat,
java.lang.Object firstArg,
java.lang.Object... moreArgs)
Reports a diagnostic for a binding or missing binding.
|