com.google.gwt.angular.client.Scope 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;
/**
* A scope object is essentially a Model object that can be injected and comes with some
* methods builtin. The {@link NgInject} annotation here says that all subtypes of Scope will
* still be named as '$scope'.
*/
@NgInject(name = "$scope",
basetype = Scope.class)
public interface Scope> extends Model {
void $watch(String expr, WatchFunction func);
void $apply();
void $apply(String expr);
void $apply(Runnable runnable);
void $onDestroy(Runnable runnable);
void $on(String eventName, Runnable runnable);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy