| Package | Description | 
|---|---|
| net.java.html.lib.angular.ng | 
| Modifier and Type | Method and Description | 
|---|---|
static IModule | 
IModule.$as(Object obj)  | 
IModule | 
IModule.component(String name,
         IComponentOptions options)
Use this method to register a component. 
 | 
IModule | 
IModule.config(Function configFn)
Use this method to register work which needs to be performed on module loading. 
 | 
IModule | 
IModule.config(Object[] inlineAnnotatedFunction)
Use this method to register work which needs to be performed on module loading. 
 | 
IModule | 
IModule.config(Objs object)  | 
IModule | 
IModule.constant(Objs object)  | 
IModule | 
IModule.constant(String name,
        Object value)
Register a constant service, such as a string, a number, an array, an object or a function, with the $injector. 
 | 
IModule | 
IModule.controller(Objs object)  | 
IModule | 
IModule.controller(String name,
          Function controllerConstructor)
The $controller service is used by Angular to create new controllers. 
 | 
IModule | 
IModule.controller(String name,
          Object[] inlineAnnotatedConstructor)
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. 
 | 
IModule | 
IModule.decorator(String name,
         Object[] inlineAnnotatedConstructor)  | 
IModule | 
IModule.directive(Objs object)  | 
IModule | 
IModule.directive(String name,
         IDirectiveFactory directiveFactory)
Register a new directive with the compiler. 
 | 
IModule | 
IModule.directive(String name,
         Object[] inlineAnnotatedFunction)
Register a new directive with the compiler. 
 | 
IModule | 
IModule.factory(Objs object)  | 
IModule | 
IModule.factory(String name,
       Function $getFn)
Register a service factory, which will be called to return the service instance. 
 | 
IModule | 
IModule.factory(String name,
       Object[] inlineAnnotatedFunction)
Register a service factory, which will be called to return the service instance. 
 | 
IModule | 
IModule.filter(Objs object)  | 
IModule | 
IModule.filter(String name,
      Function filterFactoryFunction)  | 
IModule | 
IModule.filter(String name,
      Object[] inlineAnnotatedFunction)  | 
IModule | 
IAngularStatic.module(String name)
The angular.module is a global place for creating, registering and retrieving Angular modules. 
 | 
IModule | 
IAngularStatic.module(String name,
      String[] requires)
The angular.module is a global place for creating, registering and retrieving Angular modules. 
 | 
IModule | 
IAngularStatic.module(String name,
      String[] requires,
      Function configFn)
The angular.module is a global place for creating, registering and retrieving Angular modules. 
 | 
IModule | 
IModule.provider(Objs object)  | 
IModule | 
IModule.provider(String name,
        IServiceProvider providerObject)  | 
IModule | 
IModule.provider(String name,
        IServiceProviderClass serviceProviderConstructor)  | 
IModule | 
IModule.provider(String name,
        IServiceProviderFactory serviceProviderFactory)  | 
IModule | 
IModule.provider(String name,
        Object[] inlineAnnotatedConstructor)  | 
IModule | 
IModule.run(Function initializationFunction)
Run blocks are the closest thing in Angular to the main method. 
 | 
IModule | 
IModule.run(Object[] inlineAnnotatedFunction)
Run blocks are the closest thing in Angular to the main method. 
 | 
IModule | 
IModule.service(Objs object)  | 
IModule | 
IModule.service(String name,
       Function serviceConstructor)
Register a service constructor, which will be invoked with new to create the service instance. 
 | 
IModule | 
IModule.service(String name,
       Object[] inlineAnnotatedConstructor)
Register a service constructor, which will be invoked with new to create the service instance. 
 | 
IModule | 
IModule.value(Objs object)  | 
IModule | 
IModule.value(String name,
     Object value)
Register a value service with the $injector, such as a string, a number, an array, an object or a function. 
 | 
Copyright © 2018. All rights reserved.