com.google.gwt.angular.client.RouteParams Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of angulargwt Show documentation
Show all versions of angulargwt Show documentation
Fork of AngularGWT based on ltgt's maven-plugin
package com.google.gwt.angular.client;
import com.google.gwt.core.client.JavaScriptObject;
/**
* The angular.js $routeParams object.
*/
@NgInject(name = "$routeParams")
final public class RouteParams extends JavaScriptObject {
protected RouteParams() {
}
public native String get(String key) /*-{
return this[key];
}-*/;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy