com.asayama.gwt.angular.tutorial.client.SampleEntryPoint Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gwt-angular-tutorial Show documentation
Show all versions of gwt-angular-tutorial Show documentation
The tutorial section of GWT Angular demo website.
The newest version!
package com.asayama.gwt.angular.tutorial.client;
import com.asayama.gwt.angular.client.Angular;
import com.google.gwt.core.client.EntryPoint;
/**
* GWT Module's EntryPoint implementation. It binds the Angular Modules to this
* this application's view component, which is found under "public" directory
* of Java package com.asayama.gwt.angular.tutorial
.
*
* @author kyoken74
*/
public class SampleEntryPoint implements EntryPoint {
@Override
public void onModuleLoad() {
Angular.bootstrap();
}
}