Object

The Object class is the parent class of all the classes in lide bydefault. In other words, it is the topmost class of Lide.


Constructor

Object class has a single constructor:

object Object:new ( string sObjectName, number nObjectID )

Arguments

These arguments are received by class constructor.

Argument Description
sObjectName The object name
nObjectID The object identificator

Class Methods

These methods are defined by this class.


Object:getID

Returns the identificator of this object.
number Object:getID( )

Object:setID

Returns the identificator of this object.
bool Object:setID( number nID )

Object:getName

Returns the name of this object.
string Object:getName( )

Object:setName

Set the name of this object.
bool Object:setName( string sObjectName )