Package com.google.gwt.inject.client.packageprivate.subpackage.subsubpackage

Examples of com.google.gwt.inject.client.packageprivate.subpackage.subsubpackage.SubSubPackageGinModule


import java.util.List;

public class SubPackageGinModule extends AbstractGinModule {
  @Override
  public void configure() {
    install(new SubSubPackageGinModule());

    // Test binding a public interface to a package-private implementation.
    bind(PublicInterface.class).to(PrivateImplementation.class);

    // Test binding a package-private class as an eager singleton.
View Full Code Here

TOP

Related Classes of com.google.gwt.inject.client.packageprivate.subpackage.subsubpackage.SubSubPackageGinModule

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.