Skip to content

Instantly share code, notes, and snippets.

@lofidewanto
Last active October 27, 2020 22:30
Show Gist options
  • Select an option

  • Save lofidewanto/ff4be1726370a7f61b8af9e78bb51ecf to your computer and use it in GitHub Desktop.

Select an option

Save lofidewanto/ff4be1726370a7f61b8af9e78bb51ecf to your computer and use it in GitHub Desktop.
IndexedDB with Java Patterns - Entry Point
package com.github.lofi.client
import java.util.logging.Logger;
import com.google.gwt.core.client.EntryPoint;
public class AppEntryPoint implements EntryPoint {
private static Logger logger = Logger.getLogger(AppEntryPoint.class.getName());
@Override
public void onModuleLoad() {
logger.info("Create component Dagger2");
DaggerAppComponent.create().getProductComposite().renderView();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment