com.asayama.gwt.angular.site.pages.client.Pages Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gwt-angular-pages Show documentation
Show all versions of gwt-angular-pages Show documentation
Provides "page" view-model for GWT Angular demo website.
package com.asayama.gwt.angular.site.pages.client;
import com.asayama.gwt.angular.client.AbstractModule;
import com.asayama.gwt.angular.client.Angular;
import com.google.gwt.core.client.EntryPoint;
public class Pages extends AbstractModule implements EntryPoint {
@Override
public void onModuleLoad() {
Angular.module(this);
}
}