|
|
|
Constructor.
|
|
Copy constructor.
~ |
[virtual]
Destructor.
bool |
[const]
Returns: True if this object is null, i.e. if there is no data attached to this object. Don't confuse this with the Null object.
Type |
[const]
Returns: the type of the object. One of the KJS::Type enums.
bool |
[const]
Check whether object is of a certain type
Parameters:
t | type to check for |
bool |
[const]
Check whether object is of a certain type. Allows checking of host objects, too.
Parameters:
type | name (Number, Boolean etc.) |
bool |
[const]
Use this method when checking for objects. It's safer than checking for a single object type with isA().
bool |
[const]
Examine the inheritance structure of this object.
Parameters:
t | Name of the base class. |
Returns: True if object is of type t or a derived from such a type.
void |
Set the internal [[prototype]] property of this object.
Parameters:
p | A prototype object. |
KJSO |
[const]
Returns: The internal [[prototype]] property.
KJSO |
[const]
The internal [[Get]] method.
Returns: The value of property p.
bool |
[const]
The internal [[HasProperty]] method.
Parameters:
p | Property name. |
recursive | Indicates whether prototypes are searched as well. |
Returns: Boolean value indicating whether the object already has a member with the given name p.
void |
The internal [[Put]] method. Sets the specified property to the value v.
Parameters:
p | Property name. |
v | Value. |
bool |
[const]
The internal [[CanPut]] method.
Parameters:
p | Property name. |
Returns: A boolean value indicating whether a [[Put]] operation with p succeed.
void |
The internal [[Delete]] method. Removes the specified property from the object.
Parameters:
p | Property name. |
Generated by: root@porky.devel.redhat.com on Wed May 10 08:57:04 2000, using kdoc 2.0a35. |