com.asayama.gwt.angular.tutorial.client.SampleResources 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.
package com.asayama.gwt.angular.tutorial.client;
import com.asayama.gwt.resources.client.HtmlResource;
import com.google.gwt.core.client.GWT;
import com.google.gwt.resources.client.ClientBundle;
public interface SampleResources extends ClientBundle {
public static final SampleResources INSTANCE = GWT.create(SampleResources.class);
@Source("Sample.html")
public HtmlResource sample();
}