| Package | org.springextensions.actionscript.ioc |
| SVN browsing | DependencyCheckMode.as |
| Fisheye | DependencyCheckMode.as |
| Class | public class DependencyCheckMode |
See also
Documentation reference: autowiring objects
| Property | Defined by | ||
|---|---|---|---|
| name : String [read-only]
Returns the name of the autowire type.
| DependencyCheckMode | ||
| Method | Defined by | ||
|---|---|---|---|
|
DependencyCheckMode(name:String)
Creates a new
ObjectDefintionDependencyCheck instance. | DependencyCheckMode | ||
|
checkObjectProperties():Boolean
| DependencyCheckMode | ||
|
checkSimpleProperties():Boolean
| DependencyCheckMode | ||
|
fromName(name:String):DependencyCheckMode
[static]
| DependencyCheckMode | ||
|
toString():String
| DependencyCheckMode | ||
| Constant | Defined by | ||
|---|---|---|---|
| ALL : DependencyCheckMode
[static] Dependency check is done on all object properties
| DependencyCheckMode | ||
| ALL_NAME : String = "all" [static]
| DependencyCheckMode | ||
| NONE : DependencyCheckMode
[static] No dependency check is done on the object properties
| DependencyCheckMode | ||
| NONE_NAME : String = "none" [static] Autowired values
| DependencyCheckMode | ||
| OBJECTS : DependencyCheckMode
[static] Dependency check is done just on "collaborator" (non primitive and non collection) object
properties
| DependencyCheckMode | ||
| OBJECTS_NAME : String = "objects" [static]
| DependencyCheckMode | ||
| SIMPLE : DependencyCheckMode
[static] Dependency check is done just on primitive and collection object properties
| DependencyCheckMode | ||
| SIMPLE_NAME : String = "simple" [static]
| DependencyCheckMode | ||
| name | property |
name:String [read-only]Returns the name of the autowire type.
Implementation public function get name():String
| DependencyCheckMode | () | constructor |
public function DependencyCheckMode(name:String)
Creates a new ObjectDefintionDependencyCheck instance.
This constructor is only used internally to set up the enum and all
calls will fail.
name:String — the name of the scope
|
| checkObjectProperties | () | method |
public function checkObjectProperties():BooleanReturns
Boolean — true if object properties should be checked,
false otherwise.
|
| checkSimpleProperties | () | method |
public function checkSimpleProperties():BooleanReturns
Boolean — true if simple properties should be checked,
false otherwise.
|
| fromName | () | method |
public static function fromName(name:String):DependencyCheckModeParameters
name:String |
DependencyCheckMode |
| toString | () | method |
public function toString():String
Returns
String |
| ALL | constant |
public static const ALL:DependencyCheckModeDependency check is done on all object properties
| ALL_NAME | constant |
public static const ALL_NAME:String = "all"
| NONE | constant |
public static const NONE:DependencyCheckModeNo dependency check is done on the object properties
| NONE_NAME | constant |
public static const NONE_NAME:String = "none"Autowired values
| OBJECTS | constant |
public static const OBJECTS:DependencyCheckModeDependency check is done just on "collaborator" (non primitive and non collection) object properties
| OBJECTS_NAME | constant |
public static const OBJECTS_NAME:String = "objects"
| SIMPLE | constant |
public static const SIMPLE:DependencyCheckModeDependency check is done just on primitive and collection object properties
| SIMPLE_NAME | constant |
public static const SIMPLE_NAME:String = "simple"