#include <skExecutable.h>
Inheritance diagram for skExecutable:
Public Methods | |
skExecutable () | |
Default Constructor. | |
virtual | ~skExecutable () |
Destructor. | |
virtual int | executableType () const |
this method returns the type of the object. More... | |
virtual int | intValue () const |
returns an integer equivalent of this object. | |
virtual bool | boolValue () const |
returns a boolean equivalent of this object. | |
virtual char | charValue () const |
returns a character equivalent of this object. | |
virtual skString | strValue () const |
returns a String equivalent of this object. | |
virtual float | floatValue () const |
returns a float equivalent of this object. | |
virtual bool | setValue (const skString& field_name,const skString& attribute,const skRValue& value) |
requests the object to set a field to the given value. More... | |
virtual bool | setValueAt (const skRValue& array_index,const skString& attribute,const skRValue& value) |
requests the object to set an item in its collection to a certain value. More... | |
virtual bool | getValue (const skString& field_name,const skString& attribute,skRValue& value) |
requests the object to return a field's value. More... | |
virtual bool | getValueAt (const skRValue& array_index,const skString& attribute,skRValue& value) |
requests the object to return an object from its collection. More... | |
virtual bool | method (const skString& method_name,skRValueArray& arguments,skRValue& return_value) |
Requests that the object execute the given method. More... | |
virtual bool | equals (skExecutable * other_object) const |
This method compares this object with another object. More... |
|
This method compares this object with another object. The default implementation checks object pointers. |
|
this method returns the type of the object. By default this is UNDEFINED_TYPE. Define your own value if you want to check the type of your object at run-time Reimplemented in skTreeNodeObject, and skXMLElementObject. |
|
requests the object to return a field's value.
Reimplemented in skTreeNodeObject, and skXMLElementObject. |
|
requests the object to return an object from its collection.
Reimplemented in skTreeNodeObject, and skXMLElementObject. |
|
Requests that the object execute the given method.
Reimplemented in skTreeNodeObject, skTreeNodeObjectEnumerator, skXMLElementObject, and skXMLElementObjectEnumerator. |
|
requests the object to set a field to the given value.
Reimplemented in skInterpreter, skTreeNodeObject, and skXMLElementObject. |
|
requests the object to set an item in its collection to a certain value.
Reimplemented in skTreeNodeObject, and skXMLElementObject. |