C# Class Jint.Native.LinkedDescriptor

Linked descriptor - a link to the particular property (represented by a descriptor) of the particular object.
Inheritance: Descriptor
ファイルを表示 Open project: splhack/unity-jint Class Usage Examples

Private Properties

Property Type Description

Public Methods

Method Description
Get ( JsDictionaryObject that ) : JsInstance
LinkedDescriptor ( JsDictionaryObject owner, string name, Descriptor source, JsDictionaryObject that ) : System

Constructs new descriptor

Set ( JsDictionaryObject that, JsInstance value ) : void

Method Details

Get() public method

public Get ( JsDictionaryObject that ) : JsInstance
that JsDictionaryObject
return JsInstance

LinkedDescriptor() public method

Constructs new descriptor
public LinkedDescriptor ( JsDictionaryObject owner, string name, Descriptor source, JsDictionaryObject that ) : System
owner JsDictionaryObject An owner of the new descriptor
name string A name of the new descriptor
source Descriptor A property descriptor of the target object to which we should link to
that JsDictionaryObject A target object to whose property we are linking. This parameter will be /// used in the calls to a 'Get' and 'Set' properties of the source descriptor.
return System

Set() public method

public Set ( JsDictionaryObject that, JsInstance value ) : void
that JsDictionaryObject
value JsInstance
return void