com.google.gwt.angular.client.Location 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 $location object.
*/
@NgInject(name = "$location")
final public class Location extends JavaScriptObject {
protected Location() {
}
public native String path() /*-{
return this.path();
}-*/;
public native void path(String p) /*-{
return this.path(p);
}-*/;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy