#include <it_bus/reflect/model_group.h>
Inheritance diagram for IT_Reflect::ModelGroup:
They all share this common API.
Definition at line 15 of file model_group.h.
Public Member Functions | |
ModelGroup () throw (()) | |
Constructor. | |
virtual | ~ModelGroup () throw (()) |
Destructor. | |
virtual size_t | get_element_count () const =0 throw ((ReflectException)) |
Get the number of elements defined in this object's schema. | |
virtual const IT_Bus::QName & | get_element_name (size_t i) const =0 throw ((ReflectException)) |
Get the name of the ith element. | |
virtual const Reflection * | get_element (size_t i) const =0 throw ((ReflectException)) |
Get read-only reflection of the i'th element, that is the element whos name is get_element_names()[i]. | |
virtual const Reflection * | get_element (const IT_Bus::QName &name) const =0 throw ((ReflectException)) |
Get read-only reflection of named element. | |
virtual Reflection * | use_element (size_t i)=0 throw ((ReflectException)) |
Use the element at the specified index. | |
virtual Reflection * | use_element (const IT_Bus::QName &name)=0 throw ((ReflectException)) |
Use the named element. |
|
Get read-only reflection of named element. For a choice, the named element must be current.
|
|
Get read-only reflection of the i'th element, that is the element whos name is get_element_names()[i]. For a choice the i'th element must be the current element.
|
|
Get the number of elements defined in this object's schema.
Implemented in IT_Reflect::ModelGroupImpl. |
|
Get the name of the ith element.
Implemented in IT_Reflect::ModelGroupImpl. |
|
Use the named element. Returns a pointer to a reflection object that can be used to modify the element. For a choice this makes the named element current.
Implemented in IT_Reflect::ModelGroupImpl. |
|
Use the element at the specified index. Returns a Reflection object that can be used to modify the element. For a choice, makes the element at i current.
Implemented in IT_Reflect::ModelGroupImpl. |