DISPATCH PROPSET()

From Lianjapedia
Jump to: navigation, search

PURPOSE

A macro to dispatch a set property method passed to the object

SYNONYM

None

SYNOPSIS

#include "lianja_api.h"
 
DISPATCH_PROPSET(classname, propertyname)
 
<input parameters>
constant		classname;	/* Class name that contains the property	*/
constant		propertyname;	/* Property name to dispatch set method	*/
 
<output parameters>
none

DESCRIPTION

The DISPATCH_PROPSET() macro is used to dispatch a method that sets the value of a specified property passed to the object. After a method is dispatched by this macro, execution is returned to Lianja.

EXAMPLE

The following example adds a DISPATCH_PROPSET() macro to set the value of the property NumValue in a class called clsMyClass.

Example Lianja script:

test = newobject("myclass")
// Set the value of the property NumValue
test.numvalue = test.numvalue * 5

Example in 'C' object:

#include "lianja_api.h"
 
DEFINE_CLASS(clsMyClass)
{
	/* Dispatch factory methods and return */
	DISPATCH_FACTORY();
 
	/* Dispatch SET or GET PROPERTY  */
	/* method for property NumValue	*/
	/* then return.				*/
	DISPATCH_PROPSET(clsMyClass, NumValue);
	DISPATCH_PROPGET(clsMyClass, NumValue); 
}

SEE ALSO

DEFINE_CLASS(), DEFINE_METHOD(), DEFINE_PROPERTYGET(), DEFINE_PROPERTYSET(), DISPATCH_FACTORY(), DISPATCH_METHOD(), DISPATCH_PROPGET(), OBJECT_ASSIGN(), OBJECT_DELETE(), OBJECT_GETARG(), OBJECT_GETARGC(), OBJECT_GETDATA(), OBJECT_GETOBJECT(), OBJECT_GETPARAMETER(), OBJECT_GETPROPERTY(), OBJECT_GETTYPE(), OBJECT_GETVALUE(), OBJECT_NEW(), OBJECT_RETERROR(), OBJECT_RETPROPERTY(), OBJECT_RETRESULT(), OBJECT_SETARG(), OBJECT_SETDATA(), OBJECT_SETPROPERTY()