#include <skiExecutable.h>
Inheritance diagram for skiExecutable::
Public Methods | |
virtual | ~skiExecutable () |
Destructor. | |
virtual int | executableType () const=0 |
this method returns the type of the object. More... | |
virtual int | intValue () const=0 |
returns an integer equivalent of this object. | |
virtual bool | boolValue () const=0 |
returns a boolean equivalent of this object. | |
virtual Char | charValue () const=0 |
returns a character equivalent of this object. | |
virtual skString | strValue () const=0 |
returns a String equivalent of this object. | |
virtual float | floatValue () const=0 |
returns a float equivalent of this object. | |
virtual bool | setValue (const skString &field_name, const skString &attribute, const skRValue &value)=0 |
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)=0 |
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)=0 |
requests the object to return a field's value. More... | |
virtual bool | getValueAt (const skRValue &array_index, const skString &attribute, skRValue &value)=0 |
requests the object to return an object from its collection. More... | |
virtual bool | method (const skString &method_name, skRValueArray &arguments, skRValue &return_value)=0 |
Requests that the object execute the given method. More... | |
virtual bool | equals (const skiExecutable *other_object) const=0 |
This method compares this object with another object. | |
virtual skExecutableIterator * | createIterator (const skString &qualifier)=0 |
This method returns an executable iterator used in foreach statements. More... | |
virtual skExecutableIterator * | createIterator ()=0 |
This method returns an executable iterator used in foreach statements. More... |
All its methods are pure virtuals so that it can be used in as many different class hierarchies as possible.
|
This method returns an executable iterator used in foreach statements.
Reimplemented in skElementObject, skExecutable, skTreeNodeObject, and skXMLElementObject. |
|
This method returns an executable iterator used in foreach statements.
Reimplemented in skElementObject, skExecutable, skTreeNodeObject, and skXMLElementObject. |
|
this method returns the type of the object. Define your own value if you want to check the type of your object at run-time Reimplemented in skElementObject, skExecutable, skTreeNodeObject, and skXMLElementObject. |
|
requests the object to return a field's value.
Reimplemented in skElementObject, skExecutable, skTreeNodeObject, and skXMLElementObject. |
|
requests the object to return an object from its collection.
Reimplemented in skElementObject, skExecutable, skTreeNodeObject, and skXMLElementObject. |
|
Requests that the object execute the given method.
Reimplemented in skElementObject, skElementObjectEnumerator, skExecutable, skTreeNodeObject, skTreeNodeObjectEnumerator, skXMLElementObject, and skXMLElementObjectEnumerator. |
|
requests the object to set a field to the given value.
Reimplemented in skElementObject, skExecutable, skInterpreter, skTreeNodeObject, and skXMLElementObject. |
|
requests the object to set an item in its collection to a certain value.
Reimplemented in skElementObject, skExecutable, skTreeNodeObject, and skXMLElementObject. |