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
AngularJS integration for GWT
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 JsonObject json() {
// return Util.reinterpret_cast(this);
// }
public native String get(String key) /*-{
return this[key];
}-*/;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy