google-code-export / google-guice

Automatically exported from code.google.com/p/google-guice
Apache License 2.0
2 stars 1 forks source link

Grapher extension does not draw implementation classes on the graph #415

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
If I use the following module configuration and use grapher extension to 
get the .dot file - no implementation classes are shown on the graph:

    protected void configure() {
        bind(EventBus.class).in(Singleton.class);

        bind(MainPresenter.class).to(MainPresenterImpl.class);
        bind(MainWidget.class).to(MainWidgetImpl.class);

        bind(ResultPresenter.class).to(ResultPresenterImpl.class);
        bind(ResultWidget.class).to(ResultWidgetImpl.class);

bind(ErrorLogPresenter.class).to(ErrorLogPresenterImpl.class); 
        bind(ErrorLogger.class).to(ErrorLoggerImpl.class);

        bindConstant().annotatedWith(NumberOfColumns.class).to(5);
    }

The .dot file is attached.

Original issue reported on code.google.com by markovuk...@gmail.com on 19 Aug 2009 at 7:11

Attachments:

GoogleCodeExporter commented 9 years ago
Is this extension being maintained?  If it is not something should be added to  
the wiki as a disclaimer.

Original comment by bens%fas...@gtempaccount.com on 25 Jun 2010 at 5:34

GoogleCodeExporter commented 9 years ago

Original comment by sberlin on 22 Feb 2011 at 1:42

GoogleCodeExporter commented 9 years ago

Original comment by sberlin on 26 Mar 2013 at 1:46