Last active
October 27, 2020 22:30
-
-
Save lofidewanto/ff4be1726370a7f61b8af9e78bb51ecf to your computer and use it in GitHub Desktop.
IndexedDB with Java Patterns - Entry Point
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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