Package com.google.inject.grapher

Examples of com.google.inject.grapher.GrapherModule


     * @return the "Dot" graph definition
     */
    public String graph() throws Exception {
        ByteArrayOutputStream baos = new ByteArrayOutputStream();
        PrintWriter out = new PrintWriter(baos);
        Injector localInjector = Guice.createInjector(new GrapherModule(), new GraphvizModule());
        GraphvizRenderer renderer = localInjector.getInstance(GraphvizRenderer.class);
        renderer.setOut(out).setRankdir("TB");
        InjectorGrapher g = localInjector.getInstance(InjectorGrapher.class).of(injector);
        if (roots != null) {
            g.rootedAt(roots);
View Full Code Here


  public final static Injector graphGood(String filename, Injector inj) throws IOException {
    ByteArrayOutputStream baos = new ByteArrayOutputStream();
    PrintWriter out = new PrintWriter(baos);

    Injector injector = Guice.createInjector(new GrapherModule(),
        new GraphvizModule());
    GraphvizRenderer renderer = injector
        .getInstance(GraphvizRenderer.class);
    renderer.setOut(out).setRankdir("TB");
View Full Code Here

TOP

Related Classes of com.google.inject.grapher.GrapherModule

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.