Inheritance diagram for skTest:
Public Methods | |
skTest () | |
skExecutableIterator* | createIterator (const skString& qualifier) |
This method returns an executable iterator used in foreach statements. More... | |
skExecutableIterator* | createIterator () |
This method returns an executable iterator used in foreach statements. More... | |
bool | getValue (const skString& field_name,const skString& attribute,skRValue& value) |
requests the object to return a field's value. More... | |
bool | setValue (const skString& field_name,const skString& attribute,const skRValue& value) |
requests the object to set a field to the given value. More... | |
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... | |
bool | getValueAt (const skRValue& array_index, const skString& attribute, skRValue& value) |
requests the object to return an object from its collection. More... | |
bool | method (const skString& method_name,skRValueArray& arguments,skRValue& return_value) |
Requests that the object execute the given method. More... |
The class supports the method "createObject" and an instance is put as a global variable called "Test". This means you can do the following in Simkin script:
a=Test.createObject(); b=a:name;And watch a trace of the "getValue" function being called
|
This method returns an executable iterator used in foreach statements.
Reimplemented from skExecutable. |
|
This method returns an executable iterator used in foreach statements.
Reimplemented from skExecutable. |
|
requests the object to return a field's value.
Reimplemented from skExecutable. |
|
requests the object to return an object from its collection.
Reimplemented from skExecutable. |
|
Requests that the object execute the given method.
Reimplemented from skExecutable. |
|
requests the object to set a field to the given value.
Reimplemented from skExecutable. |
|
requests the object to set an item in its collection to a certain value.
Reimplemented from skExecutable. |