| Package | org.spicefactory.parsley.core.scope |
| Class | public class ScopeName |
| Inheritance | ScopeName Object |
| Constant | Defined By | ||
|---|---|---|---|
| GLOBAL : String = global [static]
Constant for the name of the global scope. | ScopeName | ||
| LOCAL : String = local [static]
Constant for the name of the local scope. | ScopeName | ||
| GLOBAL | Constant |
public static const GLOBAL:String = globalConstant for the name of the global scope.
A global scope spans the entire Context hierarchy and is inherited by each child Context added to the hierarchy. It is not necessarily global application-wide, since you can build disconnected Context hierachies, although this is a rather rare use case.
| LOCAL | Constant |
public static const LOCAL:String = localConstant for the name of the local scope.
A local scope only spans a single Context. Such a scope is automatically created for each Context created in an application.