Examples of GerritFilterModule


Examples of com.urswolfer.intellij.plugin.gerrit.ui.filter.GerritFilterModule

* @author Thomas Forrer
*/
public class GerritUiModule extends AbstractModule {
    @Override
    protected void configure() {
        install(new GerritFilterModule());
        bind(GerritSelectRevisionInfoColumn.class);
        Multibinder<GerritChangeNodeDecorator> decorators = Multibinder.newSetBinder(binder(), GerritChangeNodeDecorator.class);
        decorators.addBinding().to(GerritCommentCountChangeNodeDecorator.class);
        bind(RepositoryChangesBrowserProvider.class);
        bind(SettingsPanel.class);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.