
com.asayama.gwt.angular.site.examples.client.PromiseExample Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Promise Show documentation
Show all versions of Promise Show documentation
An example GWT Angular module demonstrating the use of promise pattern.
The newest version!
package com.asayama.gwt.angular.site.examples.client;
import com.asayama.gwt.angular.client.AbstractModule;
import com.asayama.gwt.angular.client.Angular;
import com.asayama.gwt.angular.site.examples.client.service.GreetingService;
import com.google.gwt.core.client.EntryPoint;
public class PromiseExample extends AbstractModule implements EntryPoint {
public void onModuleLoad() {
Angular.module(this);
service(GreetingService.class);
controller(PromiseExampleController.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy