Inheritance diagram for IT_Bus::IT_ReferenceReflection:
Definition at line 491 of file reference.h.
Public Member Functions | |
const IT_Reflect::Reflection * | get_element (size_t i) const throw ((IT_Reflect::ReflectException)) |
Get read-only reflection of the i'th element, that is the element whos name is get_element_names()[i]. | |
const IT_Reflect::Reflection * | get_element (const IT_Bus::QName &name) const throw ((IT_Reflect::ReflectException)) |
Get read-only reflection of named element. | |
const IT_Reflect::Reflection * | get_attribute_value (const IT_Bus::QName &name) const throw ((IT_Reflect::ReflectException)) |
Get read-only reflection of named attribute. | |
IT_Reflect::Reflection * | use_attribute_value (const IT_Bus::QName &name) throw ((IT_Reflect::ReflectException)) |
Use the named attribute. | |
void | remove_attribute (const IT_Bus::QName &name) throw ((IT_Reflect::ReflectException)) |
Remove an optional attribute. | |
Private Attributes | |
IT_Reflect::Traits< IT_Bus::ElementListT< IT_Bus::ReferencePort > >::ReflectionType | m_port |
IT_Reflect::Traits< IT_Bus::QName >::ReflectionType | m_service_name |
IT_Reflect::Traits< IT_Bus::String >::ReflectionType | m_wsdl_location |
Static Private Attributes | |
static IT_ElementNames | _it_sm_element_names |
static IT_AttributeNames | _it_sm_attribute_names |
Classes | |
class | IT_AttributeNames |
class | IT_ElementNames |
const IT_Reflect::Reflection* IT_Bus::IT_ReferenceReflection::get_element | ( | size_t | i | ) | const throw ((IT_Reflect::ReflectException)) [virtual] |
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.
ReflectException | if i is out of bounds, or this is a choice and the i'th element is not current. |
Implements IT_Reflect::ModelGroup.
const IT_Reflect::Reflection* IT_Bus::IT_ReferenceReflection::get_element | ( | const IT_Bus::QName & | name | ) | const throw ((IT_Reflect::ReflectException)) [virtual] |
Get read-only reflection of named element.
For a choice, the named element must be current.
name | Name of element. |
ReflectException | if name is invalid or this is a choice and named element is not current. |
Implements IT_Reflect::ModelGroup.
const IT_Reflect::Reflection* IT_Bus::IT_ReferenceReflection::get_attribute_value | ( | const IT_Bus::QName & | name | ) | const throw ((IT_Reflect::ReflectException)) [virtual] |
Get read-only reflection of named attribute.
For optional attributes returns a 0 pointer if the attribute is missing.
name | Attribute name. |
ReflectException | The attribute name is not valid. |
Implements IT_Reflect::ComplexType.
IT_Reflect::Reflection* IT_Bus::IT_ReferenceReflection::use_attribute_value | ( | const IT_Bus::QName & | name | ) | throw ((IT_Reflect::ReflectException)) [virtual] |
Use the named attribute.
Returns a reflection object that can be used to modify the attribute. For optional attributes returns a 0 pointer if the attribute is missing.
name | Attribute name. |
ReflectException | The attribute is not present, or the name is invalid. |
Reimplemented from IT_Reflect::ComplexTypeImpl.
void IT_Bus::IT_ReferenceReflection::remove_attribute | ( | const IT_Bus::QName & | name | ) | throw ((IT_Reflect::ReflectException)) [virtual] |
Remove an optional attribute.
Does nothing for non-optional attributes.
name | Attribute name. |
ReflectException |
Implements IT_Reflect::ComplexType.