#include <it_bus/reflect/complex_content.h>
Inheritance diagram for IT_Reflect::ComplexContent:
NOTE ComplexContent does not inherit from ComplexType. ComplexContent does not provide direct access to attributes, you must use get_base() and get_extension() to access attributes on the base and extension parts respectively.
Definition at line 19 of file complex_content.h.
Public Member Functions | |
ComplexContent () IT_THROW_DECL(()) | |
Constructor. | |
virtual | ~ComplexContent () IT_THROW_DECL(()) |
Destructor. | |
virtual const Reflection * | get_base () const IT_THROW_DECL((ReflectException))=0 |
Get reflection of the base part of the derived object. | |
virtual Reflection * | use_base () IT_THROW_DECL((ReflectException))=0 |
Get a reflection that can be used to modify the base part. | |
virtual const Reflection * | get_extension () const IT_THROW_DECL((ReflectException))=0 |
Get reflection of the extension part of derived object. | |
virtual Reflection * | use_extension () IT_THROW_DECL((ReflectException))=0 |
Get a reflection that can be used to modify the derived part. | |
virtual const Reflection * | get_restriction () const IT_THROW_DECL((ReflectException))=0 |
Get reflection of the restriction part of derived object. | |
virtual Reflection * | use_restriction () IT_THROW_DECL((ReflectException))=0 |
Get a reflection that can be used to modify the derived part. |
virtual const Reflection* IT_Reflect::ComplexContent::get_base | ( | ) | const [pure virtual] |
Get reflection of the base part of the derived object.
virtual const Reflection* IT_Reflect::ComplexContent::get_extension | ( | ) | const [pure virtual] |
Get reflection of the extension part of derived object.
Return 0 if there is no extension.
ReflectException | if has_extension() is false. |
virtual const Reflection* IT_Reflect::ComplexContent::get_restriction | ( | ) | const [pure virtual] |
Get reflection of the restriction part of derived object.
Return 0 if there is no restriction.
ReflectException | if has_restriction() is false. |
virtual Reflection* IT_Reflect::ComplexContent::use_base | ( | ) | [pure virtual] |
Get a reflection that can be used to modify the base part.
virtual Reflection* IT_Reflect::ComplexContent::use_extension | ( | ) | [pure virtual] |
Get a reflection that can be used to modify the derived part.
ReflectException | if has_extension() is false. |
virtual Reflection* IT_Reflect::ComplexContent::use_restriction | ( | ) | [pure virtual] |
Get a reflection that can be used to modify the derived part.
ReflectException | if has_restriction() is false. |