Package | com.cyntaxic.cynmvc.model.vos |
Class | public class ScopeVO |
Inheritance | ScopeVO CyntaxicVO Object |
ScopeVO
class is a value object used to scope a model callback.
Property | Defined By | ||
---|---|---|---|
handle : String [read-only]
The handle string to be called on the scoped object. | ScopeVO | ||
scope : Object [read-only]
The object that is being called on. | ScopeVO |
Method | Defined By | ||
---|---|---|---|
ScopeVO(scope:Object, handle:String)
Creates a new scoped value object. | ScopeVO | ||
describe(compact:Boolean = true):String
Returns a valid JSON string describing the object. | CyntaxicVO | ||
getProp(prop:String):Object
Gets a property value by its property name. | CyntaxicVO |
handle | property |
handle:String
[read-only] The handle string to be called on the scoped object.
public function get handle():String
scope | property |
scope:Object
[read-only] The object that is being called on.
public function get scope():Object
ScopeVO | () | Constructor |
public function ScopeVO(scope:Object, handle:String)
Creates a new scoped value object.
Parametersscope:Object — The object to call the handle on.
| |
handle:String — The handle string to call.
|