Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
package net.java.html.lib.angular;
public class IRootScopeService extends net.java.html.lib.Objs {
protected IRootScopeService(net.java.html.lib.Objs.Constructor> c, java.lang.Object js) {
super(c, js);
}
private static final class $Constructor extends net.java.html.lib.Objs.Constructor {
$Constructor() {
super(IRootScopeService.class);
}
@Override
public IRootScopeService create(java.lang.Object obj) {
return obj == null ? null : new IRootScopeService(this, obj);
}
};
private static final $Constructor $AS = new $Constructor();
public static IRootScopeService $as(java.lang.Object obj) {
return $AS.create(obj);
}
public java.lang.Object $get(java.lang.String index) {
return $Typings$.$get$369($js(this), index);
}
public net.java.html.lib.Objs.Property $parent = net.java.html.lib.Objs.Property.create(this, net.java.html.lib.angular.IScope.class, "$parent");
public IScope $parent() { return $parent.get(); }
public net.java.html.lib.Objs.Property $root = net.java.html.lib.Objs.Property.create(this, net.java.html.lib.angular.IRootScopeService.class, "$root");
public IRootScopeService $root() { return $root.get(); }
public net.java.html.lib.Objs.Property $id = net.java.html.lib.Objs.Property.create(this, java.lang.Number.class, "$id");
public java.lang.Number $id() { return $id.get(); }
// Hidden members
public net.java.html.lib.Objs.Property $$isolateBindings = net.java.html.lib.Objs.Property.create(this, java.lang.Object.class, "$$isolateBindings");
public net.java.html.lib.Objs.Property $$phase = net.java.html.lib.Objs.Property.create(this, java.lang.Object.class, "$$phase");
public java.lang.Object $apply() {
return $Typings$.$apply$370($js(this));
}
public java.lang.Object $apply(java.lang.String exp) {
return $Typings$.$apply$371($js(this), exp);
}
public java.lang.Object $apply(net.java.html.lib.Function.A1 super IScope,? extends java.lang.Object> exp) {
return $Typings$.$apply$372($js(this), net.java.html.lib.Objs.$js(net.java.html.lib.Function.newFunction(exp, new Class[] {IScope.class})));
}
public java.lang.Object $applyAsync() {
return $Typings$.$applyAsync$373($js(this));
}
public java.lang.Object $applyAsync(java.lang.String exp) {
return $Typings$.$applyAsync$374($js(this), exp);
}
public java.lang.Object $applyAsync(net.java.html.lib.Function.A1 super IScope,? extends java.lang.Object> exp) {
return $Typings$.$applyAsync$375($js(this), net.java.html.lib.Objs.$js(net.java.html.lib.Function.newFunction(exp, new Class[] {IScope.class})));
}
/**
* Dispatches an event name downwards to all child scopes (and their children) notifying the registered $rootScope.Scope listeners.
*
* The event life cycle starts at the scope on which $broadcast was called. All listeners listening for name event on this scope get notified. Afterwards, the event propagates to all direct and indirect scopes of the current scope and calls all registered listeners along the way. The event cannot be canceled.
*
* Any exception emitted from the listeners will be passed onto the $exceptionHandler service.
*
* @param name Event name to broadcast.
* @param args Optional one or more arguments which will be passed onto the event listeners.
*/
public IAngularEvent $broadcast(java.lang.String name, java.lang.Object... args) {
return (IAngularEvent)net.java.html.lib.angular.IAngularEvent.$as($Typings$.$broadcast$376($js(this), name, /* ArrayType*/$js(args)));
}
public void $destroy() {
$Typings$.$destroy$377($js(this));
}
public void $digest() {
$Typings$.$digest$378($js(this));
}
/**
* Dispatches an event name upwards through the scope hierarchy notifying the registered $rootScope.Scope listeners.
*
* The event life cycle starts at the scope on which $emit was called. All listeners listening for name event on this scope get notified. Afterwards, the event traverses upwards toward the root scope and calls all registered listeners along the way. The event will stop propagating if one of the listeners cancels it.
*
* Any exception emitted from the listeners will be passed onto the $exceptionHandler service.
*
* @param name Event name to emit.
* @param args Optional one or more arguments which will be passed onto the event listeners.
*/
public IAngularEvent $emit(java.lang.String name, java.lang.Object... args) {
return (IAngularEvent)net.java.html.lib.angular.IAngularEvent.$as($Typings$.$emit$379($js(this), name, /* ArrayType*/$js(args)));
}
public java.lang.Object $eval() {
return $Typings$.$eval$380($js(this));
}
public java.lang.Object $eval(java.lang.String expression, net.java.html.lib.Objs locals) {
return $Typings$.$eval$381($js(this), expression, /* FirstTypeNode*/$js(locals));
}
public java.lang.Object $eval(java.lang.String expression) {
return $Typings$.$eval$382($js(this), expression);
}
public java.lang.Object $eval(net.java.html.lib.Function.A1 super IScope,? extends java.lang.Object> expression, net.java.html.lib.Objs locals) {
return $Typings$.$eval$383($js(this), net.java.html.lib.Objs.$js(net.java.html.lib.Function.newFunction(expression, new Class[] {IScope.class})), /* FirstTypeNode*/$js(locals));
}
public java.lang.Object $eval(net.java.html.lib.Function.A1 super IScope,? extends java.lang.Object> expression) {
return $Typings$.$eval$384($js(this), net.java.html.lib.Objs.$js(net.java.html.lib.Function.newFunction(expression, new Class[] {IScope.class})));
}
public void $evalAsync() {
$Typings$.$evalAsync$385($js(this));
}
public void $evalAsync(java.lang.String expression) {
$Typings$.$evalAsync$386($js(this), expression);
}
public void $evalAsync(net.java.html.lib.Function.A1 super IScope,? extends java.lang.Object> expression) {
$Typings$.$evalAsync$387($js(this), net.java.html.lib.Objs.$js(net.java.html.lib.Function.newFunction(expression, new Class[] {IScope.class})));
}
// Defaults to false by the implementation checking strategy
public IScope $new(java.lang.Boolean isolate, IScope parent) {
return (IScope)net.java.html.lib.angular.IScope.$as($Typings$.$new$388($js(this), isolate, /* FirstTypeNode*/$js(parent)));
}
// Defaults to false by the implementation checking strategy
public IScope $new() {
return (IScope)net.java.html.lib.angular.IScope.$as($Typings$.$new$389($js(this)));
}
// Defaults to false by the implementation checking strategy
public IScope $new(java.lang.Boolean isolate) {
return (IScope)net.java.html.lib.angular.IScope.$as($Typings$.$new$390($js(this), isolate));
}
/**
* Listens on events of a given type. See $emit for discussion of event life cycle.
*
* The event listener function format is: function(event, args...).
*
* @param name Event name to listen on.
* @param listener Function to call when the event is emitted.
*/
public net.java.html.lib.Function.A0 extends java.lang.Void> $on(java.lang.String name, net.java.html.lib.Function.A2 super IAngularEvent,? super net.java.html.lib.Array,? extends java.lang.Object> listener) {
return (net.java.html.lib.Function.A0 extends java.lang.Void>)net.java.html.lib.Function.$as($Typings$.$on$391($js(this), name, net.java.html.lib.Objs.$js(net.java.html.lib.Function.newFunction(listener, new Class[] {IAngularEvent.class, null}))));
}
public net.java.html.lib.Function.A0 extends java.lang.Void> $watch(java.lang.String watchExpression, java.lang.String listener, java.lang.Boolean objectEquality) {
return (net.java.html.lib.Function.A0 extends java.lang.Void>)net.java.html.lib.Function.$as($Typings$.$watch$392($js(this), watchExpression, listener, objectEquality));
}
public net.java.html.lib.Function.A0 extends java.lang.Void> $watch(java.lang.String watchExpression) {
return (net.java.html.lib.Function.A0 extends java.lang.Void>)net.java.html.lib.Function.$as($Typings$.$watch$393($js(this), watchExpression));
}
public net.java.html.lib.Function.A0 extends java.lang.Void> $watch(java.lang.String watchExpression, java.lang.String listener) {
return (net.java.html.lib.Function.A0 extends java.lang.Void>)net.java.html.lib.Function.$as($Typings$.$watch$394($js(this), watchExpression, listener));
}
public net.java.html.lib.Function.A0 extends java.lang.Void> $watch(java.lang.String watchExpression, net.java.html.lib.Function.A3 super T,? super T,? super IScope,? extends java.lang.Object> listener, java.lang.Boolean objectEquality) {
return (net.java.html.lib.Function.A0 extends java.lang.Void>)net.java.html.lib.Function.$as($Typings$.$watch$395($js(this), watchExpression, net.java.html.lib.Objs.$js(net.java.html.lib.Function.newFunction(listener, new Class[] {null, null, IScope.class})), objectEquality));
}
// skipping MethodKey{name={"kind":"Identifier","text":"$watch","right":[]}, parameters=[java.lang.String]}
public net.java.html.lib.Function.A0 extends java.lang.Void> $watch(java.lang.String watchExpression, net.java.html.lib.Function.A3 super T,? super T,? super IScope,? extends java.lang.Object> listener) {
return (net.java.html.lib.Function.A0 extends java.lang.Void>)net.java.html.lib.Function.$as($Typings$.$watch$397($js(this), watchExpression, net.java.html.lib.Objs.$js(net.java.html.lib.Function.newFunction(listener, new Class[] {null, null, IScope.class}))));
}
public net.java.html.lib.Function.A0 extends java.lang.Void> $watch(net.java.html.lib.Function.A1 super IScope,? extends java.lang.Object> watchExpression, java.lang.String listener, java.lang.Boolean objectEquality) {
return (net.java.html.lib.Function.A0 extends java.lang.Void>)net.java.html.lib.Function.$as($Typings$.$watch$398($js(this), net.java.html.lib.Objs.$js(net.java.html.lib.Function.newFunction(watchExpression, new Class[] {IScope.class})), listener, objectEquality));
}
public net.java.html.lib.Function.A0 extends java.lang.Void> $watch(net.java.html.lib.Function.A1 super IScope,? extends java.lang.Object> watchExpression) {
return (net.java.html.lib.Function.A0 extends java.lang.Void>)net.java.html.lib.Function.$as($Typings$.$watch$399($js(this), net.java.html.lib.Objs.$js(net.java.html.lib.Function.newFunction(watchExpression, new Class[] {IScope.class}))));
}
public net.java.html.lib.Function.A0 extends java.lang.Void> $watch(net.java.html.lib.Function.A1 super IScope,? extends java.lang.Object> watchExpression, java.lang.String listener) {
return (net.java.html.lib.Function.A0 extends java.lang.Void>)net.java.html.lib.Function.$as($Typings$.$watch$400($js(this), net.java.html.lib.Objs.$js(net.java.html.lib.Function.newFunction(watchExpression, new Class[] {IScope.class})), listener));
}
public net.java.html.lib.Function.A0 extends java.lang.Void> $watch(net.java.html.lib.Function.A1 super IScope,? extends T> watchExpression, net.java.html.lib.Function.A3 super T,? super T,? super IScope,? extends java.lang.Object> listener, java.lang.Boolean objectEquality) {
return (net.java.html.lib.Function.A0 extends java.lang.Void>)net.java.html.lib.Function.$as($Typings$.$watch$401($js(this), net.java.html.lib.Objs.$js(net.java.html.lib.Function.newFunction(watchExpression, new Class[] {IScope.class})), net.java.html.lib.Objs.$js(net.java.html.lib.Function.newFunction(listener, new Class[] {null, null, IScope.class})), objectEquality));
}
// skipping MethodKey{name={"kind":"Identifier","text":"$watch","right":[]}, parameters=[net.java.html.lib.Function.A1]}
public net.java.html.lib.Function.A0 extends java.lang.Void> $watch(net.java.html.lib.Function.A1 super IScope,? extends T> watchExpression, net.java.html.lib.Function.A3 super T,? super T,? super IScope,? extends java.lang.Object> listener) {
return (net.java.html.lib.Function.A0 extends java.lang.Void>)net.java.html.lib.Function.$as($Typings$.$watch$403($js(this), net.java.html.lib.Objs.$js(net.java.html.lib.Function.newFunction(watchExpression, new Class[] {IScope.class})), net.java.html.lib.Objs.$js(net.java.html.lib.Function.newFunction(listener, new Class[] {null, null, IScope.class}))));
}
public net.java.html.lib.Function.A0 extends java.lang.Void> $watchCollection(java.lang.String watchExpression, net.java.html.lib.Function.A3 super T,? super T,? super IScope,? extends java.lang.Object> listener) {
return (net.java.html.lib.Function.A0 extends java.lang.Void>)net.java.html.lib.Function.$as($Typings$.$watchCollection$404($js(this), watchExpression, net.java.html.lib.Objs.$js(net.java.html.lib.Function.newFunction(listener, new Class[] {null, null, IScope.class}))));
}
public net.java.html.lib.Function.A0 extends java.lang.Void> $watchCollection(net.java.html.lib.Function.A1 super IScope,? extends T> watchExpression, net.java.html.lib.Function.A3 super T,? super T,? super IScope,? extends java.lang.Object> listener) {
return (net.java.html.lib.Function.A0 extends java.lang.Void>)net.java.html.lib.Function.$as($Typings$.$watchCollection$405($js(this), net.java.html.lib.Objs.$js(net.java.html.lib.Function.newFunction(watchExpression, new Class[] {IScope.class})), net.java.html.lib.Objs.$js(net.java.html.lib.Function.newFunction(listener, new Class[] {null, null, IScope.class}))));
}
public net.java.html.lib.Function.A0 extends java.lang.Void> $watchGroup(java.lang.Object[] watchExpressions, net.java.html.lib.Function.A3 super java.lang.Object,? super java.lang.Object,? super IScope,? extends java.lang.Object> listener) {
return (net.java.html.lib.Function.A0 extends java.lang.Void>)net.java.html.lib.Function.$as($Typings$.$watchGroup$406($js(this), /* ArrayType*/$js(watchExpressions), net.java.html.lib.Objs.$js(net.java.html.lib.Function.newFunction(listener, new Class[] {java.lang.Object.class, java.lang.Object.class, IScope.class}))));
}
public net.java.html.lib.Function.A0 extends java.lang.Void> $watchGroup(net.java.html.lib.Objs[] watchExpressions, net.java.html.lib.Function.A3 super java.lang.Object,? super java.lang.Object,? super IScope,? extends java.lang.Object> listener) {
return (net.java.html.lib.Function.A0 extends java.lang.Void>)net.java.html.lib.Function.$as($Typings$.$watchGroup$407($js(this), /* ArrayType*/$js(watchExpressions), net.java.html.lib.Objs.$js(net.java.html.lib.Function.newFunction(listener, new Class[] {java.lang.Object.class, java.lang.Object.class, IScope.class}))));
}
}