All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.asayama.gwt.angular.site.examples.client.UrlHashParameterExampleResources Maven / Gradle / Ivy

Go to download

An example GWT Angular module demonstrating the use of hash parameter in the URL.

There is a newer version: 1.0.3
Show newest version
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