com.asayama.gwt.angular.site.examples.client.UrlHashParameterExampleResources Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of UrlHashParameter Show documentation
Show all versions of UrlHashParameter Show documentation
An example GWT Angular module demonstrating the use of hash parameter in
the URL.
package com.asayama.gwt.angular.site.examples.client;
import com.asayama.gwt.angular.client.ClientResources;
import com.asayama.gwt.resources.client.HtmlResource;
import com.google.gwt.core.client.GWT;
import com.google.gwt.resources.client.TextResource;
public interface UrlHashParameterExampleResources extends ClientResources {
static final UrlHashParameterExampleResources INSTANCE = GWT.create(UrlHashParameterExampleResources.class);
static final String DEMO_URL = UrlHashParameterExampleResources.INSTANCE.demo().getSafeUri().asString();
@Source("UrlHashParameterExampleDocumentation.html")
HtmlResource urlHashParameter();
@Source("UrlHashParameterExample.html")
HtmlResource demo();
// Core Resources
@Source("com/asayama/gwt/angular/site/examples/UrlHashParameterExample.gwt.xml")
TextResource config();
@Source("UrlHashParameterExample.java")
TextResource module();
@Source("UrlHashParameterExampleController.java")
TextResource controller();
@Source("UrlHashParameterExample.html")
TextResource view();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy