(BindingGraph bindingGraph)
| 43 | } |
| 44 | |
| 45 | @Override |
| 46 | public List<ValidationItem> visitGraph(BindingGraph bindingGraph) { |
| 47 | Properties properties = new Properties(); |
| 48 | int i = 0; |
| 49 | for (ComponentNode node : bindingGraph.componentNodes()) { |
| 50 | properties.setProperty( |
| 51 | String.format("component[%s]", i++), node.componentPath().toString()); |
| 52 | } |
| 53 | |
| 54 | write(bindingGraph, properties); |
| 55 | return ImmutableList.of(); |
| 56 | } |
| 57 | |
| 58 | private void write(BindingGraph bindingGraph, Properties properties) { |
| 59 | ClassName rootComponentName = |
nothing calls this directly
no test coverage detected