| Package | Description |
|---|---|
| net.java.html.lib | |
| net.java.html.lib.angular.ng | |
| net.java.html.lib.angular.ng.auto | |
| net.java.html.lib.dom | |
| net.java.html.lib.jquery |
| Modifier and Type | Field and Description |
|---|---|
Objs.Property<Function> |
IArguments.callee |
| Modifier and Type | Method and Description |
|---|---|
static Function |
Function.$as(Object obj)
Casts given object to this class.
|
Function |
IArguments.callee() |
static <A> Function |
Function.newFunction(Function.A1<? super A,? extends Object> fn,
Class<A> argTypeA)
Factory method that wraps provided function interface into JavaScript
function object.
|
static <A,B> Function |
Function.newFunction(Function.A2<? super A,? super B,? extends Object> fn,
Class<A> argTypeA,
Class<B> argTypeB)
Factory method that wraps provided function interface into JavaScript
function object.
|
static <A,B,C> Function |
Function.newFunction(Function.A3<? super A,? super B,? super C,? extends Object> fn,
Class<A> argTypeA,
Class<B> argTypeB,
Class<C> argTypeC)
Factory method that wraps provided function interface into JavaScript
function object.
|
static <A,B,C,D> Function |
Function.newFunction(Function.A4<? super A,? super B,? super C,? super D,? extends Object> fn,
Class<A> argTypeA,
Class<B> argTypeB,
Class<C> argTypeC,
Class<D> argTypeD)
Factory method that wraps provided function interface into JavaScript
function object.
|
static Function |
Function.newFunction(Function.A5<? extends Object,? extends Object,? extends Object,? extends Object,? extends Object,? extends Object> fn)
Factory method that wraps provided function interface into JavaScript
function object.
|
static Function |
Function.newFunction(Function.A5<? extends Object,? extends Object,? extends Object,? extends Object,? extends Object,? extends Object> fn,
Class[] argTypes)
Factory method that wraps provided function interface into JavaScript
function object.
|
static <A,B,C,D,E> |
Function.newFunction(Function.A5<? super A,? super B,? super C,? super D,? super E,? extends Object> fn,
Class<A> argTypeA,
Class<B> argTypeB,
Class<C> argTypeC,
Class<D> argTypeD,
Class<E> argTypeE)
Factory method that wraps provided function interface into JavaScript
function object.
|
static Function |
Function.newFunction(String... args)
Calls the
constructor. |
| Modifier and Type | Class and Description |
|---|---|
class |
Type |
| Modifier and Type | Field and Description |
|---|---|
Objs.Property<Union.A3<String,Function,Objs[]>> |
IComponentOptions.controller
Controller constructor function that should be associated with newly created scope or the name of a registered
controller if passed as a string.
|
Objs.Property<Function> |
RouteDefinition.loader |
Objs.Property<Function> |
ComponentDefinition.loader |
Objs.Property<Function> |
IAngularEvent.preventDefault
calling preventDefault sets defaultPrevented flag to true.
|
Objs.Property<Function> |
IAngularEvent.stopPropagation
calling stopPropagation function will cancel further event propagation (available only for events that were $emit-ed).
|
Objs.Property<Union.A3<String,Function,Objs[]>> |
IComponentOptions.template
html template as a string or a function that returns an html template as a string which should be used as the
contents of this component.
|
Objs.Property<Union.A2<String,Function>> |
IDirective.template |
Objs.Property<Union.A3<String,Function,Objs[]>> |
IComponentOptions.templateUrl
path or function that returns a path to an html template that should be used as the contents of this component.
|
Objs.Property<Union.A2<String,Function>> |
IDirective.templateUrl |
| Modifier and Type | Method and Description |
|---|---|
<T> Function |
IAttributes.$observe(String name,
Function.A1<? super T,? extends Object> fn)
Set DOM element attribute value.
|
Function |
IAngularStatic.bind(Object context,
Function fn,
Object... args) |
Function |
RouteDefinition.loader() |
Function |
ComponentDefinition.loader() |
Function |
IAngularEvent.preventDefault() |
Function |
IAngularEvent.stopPropagation() |
| Modifier and Type | Method and Description |
|---|---|
IAugmentedJQuery |
IAugmentedJQueryStatic.$apply(Function func) |
<T> T |
IControllerService.$apply(Function controllerConstructor) |
IPromise<Object> |
IIntervalService.$apply(Function func,
double delay,
double count) |
IPromise<Object> |
IIntervalService.$apply(Function func,
double delay,
double count,
Boolean invokeApply) |
IPromise<Object> |
IIntervalService.$apply(Function func,
double delay,
double count,
Boolean invokeApply,
Object... args) |
<T> T |
IControllerService.$apply(Function controllerConstructor,
Object locals) |
<T> T |
IControllerService.$apply(Function controllerConstructor,
Object locals,
Boolean later) |
<T> T |
IControllerService.$apply(Function controllerConstructor,
Object locals,
Boolean later,
String ident) |
void |
IHttpBackendService.$apply(String method,
String url,
Object post,
Function callback) |
void |
IHttpBackendService.$apply(String method,
String url,
Object post,
Function callback,
Object headers) |
void |
IHttpBackendService.$apply(String method,
String url,
Object post,
Function callback,
Object headers,
double timeout) |
void |
IHttpBackendService.$apply(String method,
String url,
Object post,
Function callback,
Object headers,
double timeout,
Boolean withCredentials) |
Function |
IAngularStatic.bind(Object context,
Function fn,
Object... args) |
IModule |
IModule.config(Function configFn)
Use this method to register work which needs to be performed on module loading.
|
IModule |
IModule.controller(String name,
Function controllerConstructor)
The $controller service is used by Angular to create new controllers.
|
IModule |
IModule.decorator(String name,
Function decoratorConstructor)
Register a service decorator with the $injector.
|
ICompileProvider |
ICompileProvider.directive(Objs directivesMap,
Function directiveFactory) |
ICompileProvider |
ICompileProvider.directive(String name,
Function directiveFactory) |
IAugmentedJQuery |
IAngularStatic.element(Function func)
Wraps a raw DOM element or HTML string as a jQuery element.
|
IModule |
IModule.factory(String name,
Function $getFn)
Register a service factory, which will be called to return the service instance.
|
IModule |
IModule.filter(String name,
Function filterFactoryFunction) |
IModule |
IAngularStatic.module(String name,
String[] requires,
Function configFn)
The angular.module is a global place for creating, registering and retrieving Angular modules.
|
void |
IControllerProvider.register(String name,
Function controllerConstructor) |
IModule |
IModule.run(Function initializationFunction)
Run blocks are the closest thing in Angular to the main method.
|
IModule |
IModule.service(String name,
Function serviceConstructor)
Register a service constructor, which will be invoked with new to create the service instance.
|
| Modifier and Type | Method and Description |
|---|---|
Array<String> |
IInjectorService.annotate(Function fn) |
Array<String> |
IInjectorService.annotate(Function fn,
Boolean strictDi) |
void |
IProvideService.decorator(String name,
Function decorator)
Register a service decorator with the $injector.
|
IServiceProvider |
IProvideService.factory(String name,
Function serviceFactoryFunction) |
<T> T |
IInjectorService.instantiate(Function typeConstructor) |
<T> T |
IInjectorService.instantiate(Function typeConstructor,
Object locals) |
Object |
IInjectorService.invoke(Function func) |
Object |
IInjectorService.invoke(Function func,
Object context) |
Object |
IInjectorService.invoke(Function func,
Object context,
Object locals) |
IServiceProvider |
IProvideService.provider(String name,
Function serviceProviderConstructor) |
IServiceProvider |
IProvideService.service(String name,
Function constructor) |
| Modifier and Type | Method and Description |
|---|---|
void |
PerfWidgetExternal.addEventListener(String eventType,
Function callback) |
void |
PerfWidgetExternal.removeEventListener(String eventType,
Function callback) |
| Modifier and Type | Field and Description |
|---|---|
Objs.Property<Function> |
JQueryAnimationOptions.complete
A function to call once the animation is complete.
|
| Modifier and Type | Method and Description |
|---|---|
Function |
JQueryAnimationOptions.complete() |
| Modifier and Type | Method and Description |
|---|---|
JQueryCallback |
JQueryCallback.add(Function callbacks)
Add a callback or a collection of callbacks to a callback list.
|
JQueryCallback |
JQueryCallback.add(Function[] callbacks)
Add a callback or a collection of callbacks to a callback list.
|
JQuery |
JQuery.animate(Objs properties,
double duration,
Function complete)
Perform a custom animation of a set of CSS properties.
|
JQuery |
JQuery.animate(Objs properties,
double duration,
String easing,
Function complete)
Perform a custom animation of a set of CSS properties.
|
JQuery |
JQuery.animate(Objs properties,
String duration,
Function complete)
Perform a custom animation of a set of CSS properties.
|
JQuery |
JQuery.animate(Objs properties,
String duration,
String easing,
Function complete)
Perform a custom animation of a set of CSS properties.
|
JQuery |
JQuery.fadeIn(double duration,
Function complete)
Display the matched elements by fading them to opaque.
|
JQuery |
JQuery.fadeIn(double duration,
String easing,
Function complete)
Display the matched elements by fading them to opaque.
|
JQuery |
JQuery.fadeIn(String duration,
Function complete)
Display the matched elements by fading them to opaque.
|
JQuery |
JQuery.fadeIn(String duration,
String easing,
Function complete)
Display the matched elements by fading them to opaque.
|
JQuery |
JQuery.fadeOut(double duration,
Function complete)
Hide the matched elements by fading them to transparent.
|
JQuery |
JQuery.fadeOut(double duration,
String easing,
Function complete)
Hide the matched elements by fading them to transparent.
|
JQuery |
JQuery.fadeOut(String duration,
Function complete)
Hide the matched elements by fading them to transparent.
|
JQuery |
JQuery.fadeOut(String duration,
String easing,
Function complete)
Hide the matched elements by fading them to transparent.
|
JQuery |
JQuery.fadeTo(double duration,
double opacity,
Function complete)
Adjust the opacity of the matched elements.
|
JQuery |
JQuery.fadeTo(double duration,
double opacity,
String easing,
Function complete)
Adjust the opacity of the matched elements.
|
JQuery |
JQuery.fadeTo(String duration,
double opacity,
Function complete)
Adjust the opacity of the matched elements.
|
JQuery |
JQuery.fadeTo(String duration,
double opacity,
String easing,
Function complete)
Adjust the opacity of the matched elements.
|
JQuery |
JQuery.fadeToggle(double duration,
Function complete)
Display or hide the matched elements by animating their opacity.
|
JQuery |
JQuery.fadeToggle(double duration,
String easing,
Function complete)
Display or hide the matched elements by animating their opacity.
|
JQuery |
JQuery.fadeToggle(String duration,
Function complete)
Display or hide the matched elements by animating their opacity.
|
JQuery |
JQuery.fadeToggle(String duration,
String easing,
Function complete)
Display or hide the matched elements by animating their opacity.
|
Boolean |
JQueryCallback.has(Function callback)
Determine whether a supplied callback is in a list
|
JQuery |
JQuery.hide(double duration,
Function complete)
Hide the matched elements.
|
JQuery |
JQuery.hide(double duration,
String easing,
Function complete)
Hide the matched elements.
|
JQuery |
JQuery.hide(String duration,
Function complete)
Hide the matched elements.
|
JQuery |
JQuery.hide(String duration,
String easing,
Function complete)
Hide the matched elements.
|
JQuery |
JQueryStatic.queue(Element element,
String queueName,
Function callback)
Manipulate the queue of functions to be executed on the matched element.
|
JQuery |
JQueryStatic.queue(Element element,
String queueName,
Function[] newQueue)
Manipulate the queue of functions to be executed on the matched element.
|
JQuery |
JQuery.queue(Function callback)
Manipulate the queue of functions to be executed, once for each matched element.
|
JQuery |
JQuery.queue(Function[] newQueue)
Manipulate the queue of functions to be executed, once for each matched element.
|
JQuery |
JQuery.queue(String queueName,
Function callback)
Manipulate the queue of functions to be executed, once for each matched element.
|
JQuery |
JQuery.queue(String queueName,
Function[] newQueue)
Manipulate the queue of functions to be executed, once for each matched element.
|
JQueryCallback |
JQueryCallback.remove(Function callbacks)
Remove a callback or a collection of callbacks from a callback list.
|
JQueryCallback |
JQueryCallback.remove(Function[] callbacks)
Remove a callback or a collection of callbacks from a callback list.
|
JQuery |
JQuery.show(double duration,
Function complete)
Display the matched elements.
|
JQuery |
JQuery.show(double duration,
String easing,
Function complete)
Display the matched elements.
|
JQuery |
JQuery.show(String duration,
Function complete)
Display the matched elements.
|
JQuery |
JQuery.show(String duration,
String easing,
Function complete)
Display the matched elements.
|
JQuery |
JQuery.slideDown(double duration,
Function complete)
Display the matched elements with a sliding motion.
|
JQuery |
JQuery.slideDown(double duration,
String easing,
Function complete)
Display the matched elements with a sliding motion.
|
JQuery |
JQuery.slideDown(String duration,
Function complete)
Display the matched elements with a sliding motion.
|
JQuery |
JQuery.slideDown(String duration,
String easing,
Function complete)
Display the matched elements with a sliding motion.
|
JQuery |
JQuery.slideToggle(double duration,
Function complete)
Display or hide the matched elements with a sliding motion.
|
JQuery |
JQuery.slideToggle(double duration,
String easing,
Function complete)
Display or hide the matched elements with a sliding motion.
|
JQuery |
JQuery.slideToggle(String duration,
Function complete)
Display or hide the matched elements with a sliding motion.
|
JQuery |
JQuery.slideToggle(String duration,
String easing,
Function complete)
Display or hide the matched elements with a sliding motion.
|
JQuery |
JQuery.slideUp(double duration,
Function complete)
Hide the matched elements with a sliding motion.
|
JQuery |
JQuery.slideUp(double duration,
String easing,
Function complete)
Hide the matched elements with a sliding motion.
|
JQuery |
JQuery.slideUp(String duration,
Function complete)
Hide the matched elements with a sliding motion.
|
JQuery |
JQuery.slideUp(String duration,
String easing,
Function complete)
Hide the matched elements with a sliding motion.
|
JQuery |
JQuery.toggle(double duration,
Function complete)
Display or hide the matched elements.
|
JQuery |
JQuery.toggle(double duration,
String easing,
Function complete)
Display or hide the matched elements.
|
JQuery |
JQuery.toggle(String duration,
Function complete)
Display or hide the matched elements.
|
JQuery |
JQuery.toggle(String duration,
String easing,
Function complete)
Display or hide the matched elements.
|
Copyright © 2016. All rights reserved.