Packagecom.cyntaxic.cynmvc.model.vos
Classpublic class ScopeVO
InheritanceScopeVO Inheritance CyntaxicVO Inheritance Object

The ScopeVO class is a value object used to scope a model callback.



Public Properties
 PropertyDefined 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
Public Methods
 MethodDefined By
  
ScopeVO(scope:Object, handle:String)
Creates a new scoped value object.
ScopeVO
 Inherited
describe(compact:Boolean = true):String
Returns a valid JSON string describing the object.
CyntaxicVO
 Inherited
getProp(prop:String):Object
Gets a property value by its property name.
CyntaxicVO
Property Detail
handleproperty
handle:String  [read-only]

The handle string to be called on the scoped object.


Implementation
    public function get handle():String
scopeproperty 
scope:Object  [read-only]

The object that is being called on.


Implementation
    public function get scope():Object
Constructor Detail
ScopeVO()Constructor
public function ScopeVO(scope:Object, handle:String)

Creates a new scoped value object.

Parameters
scope:Object — The object to call the handle on.
 
handle:String — The handle string to call.