It models the XML Schema any element. More...
#include <Any.h>
Public Member Functions | |
| Any (Annotation *ann=0, std::string *id=0) | |
| Constructor. More... | |
| Any (const Any &rhs) | |
| Copy constructor. More... | |
| Annotation * | getAnnotation () const |
| It returns the associated annotation. More... | |
| std::string * | getId () const |
| It returns a pointer (may be NULL) to the object id. More... | |
| const unsigned int | getMaxOccurs () const |
| It returns the maxOccurs values. More... | |
| const unsigned int | getMinOccurs () const |
| It returns the minOccurs values. More... | |
| std::string * | getNamespace () const |
| It returns the namespaces containing the elements that can be used. More... | |
| ProcessContents | getProcessContent () const |
| It returns how the XML processor should handle validation against the elements specified by this any element. More... | |
| Any & | operator= (const Any &rhs) |
| Assignment operator. More... | |
| void | setAnnotation (Annotation *ann) |
| It sets the associated annotation. More... | |
| void | setId (std::string *id) |
| it sets the id. More... | |
| void | setMaxOccurs (unsigned int maxOccurs) |
| It sets the maxOccurs value. More... | |
| void | setMinOccurs (unsigned int minOccurs) |
| It sets the minOccurs value. More... | |
| void | setNamespace (std::string *ns) |
| It sets the namespaces containing the elements that can be used. More... | |
| void | setProcessContents (ProcessContents pc) |
| It sets how the XML processor should handle validation against the elements specified by this any element. More... | |
| ~Any () | |
| Destructor. More... | |
Static Public Attributes | |
| static const unsigned int | unbounded = std::numeric_limits<unsigned int>::max() |
| Identifer for "unbounded" max values. More... | |
Protected Attributes | |
| unsigned int | m_maxOccurs |
| It specifies the maximum number of times the any element can occur in the parent element. The value can be any number >= 0, or if you want to set no limit on the maximum number, use the value "unbounded". Default value is 1. (Optional) More... | |
| unsigned int | m_minOccurs |
| It specifies the minimum number of times the any element can occur in the parent element. The value can be any number >= 0. Default value is 1. (Optional) More... | |
Private Attributes | |
| std::string * | m_namespace |
| It specifies the namespaces containing the elements that can be used. (Optional) More... | |
| ProcessContents | m_pContents |
| It specifies how the XML processor should handle validation against the elements specified by this any element. (Optional) More... | |
It models the XML Schema any element.
The any element can be used to extend the XML document with elements not specified by the schema.
| te::xsd::Any::Any | ( | Annotation * | ann = 0, |
| std::string * | id = 0 |
||
| ) |
| te::xsd::Any::Any | ( | const Any & | rhs | ) |
Copy constructor.
| rhs | Right-hand-side object. |
Definition at line 37 of file Any.cpp.
References m_namespace, and m_pContents.
|
inherited |
It returns the associated annotation.
Definition at line 30 of file Annotated.cpp.
References te::xsd::Annotated::m_annotation.
|
inherited |
It returns a pointer (may be NULL) to the object id.
Definition at line 35 of file Identifiable.cpp.
|
inherited |
It returns the maxOccurs values.
Definition at line 40 of file Occurs.cpp.
|
inherited |
It returns the minOccurs values.
Definition at line 35 of file Occurs.cpp.
References te::xsd::Occurs::m_minOccurs.
| std::string * te::xsd::Any::getNamespace | ( | ) | const |
| te::xsd::ProcessContents te::xsd::Any::getProcessContent | ( | ) | const |
| te::xsd::Any & te::xsd::Any::operator= | ( | const Any & | rhs | ) |
Assignment operator.
| rhs | Right-hand-side object. |
Definition at line 52 of file Any.cpp.
References m_namespace, m_pContents, te::xsd::Identifiable::operator=(), te::xsd::Annotated::operator=(), and te::xsd::Occurs::operator=().
|
inherited |
It sets the associated annotation.
| ann | The annotation to be associated to the object. The annotated class will take the ownership of the given pointer. |
Definition at line 35 of file Annotated.cpp.
Referenced by te::serialize::ReadAnnotated().
|
inherited |
it sets the id.
| id | The id to be associated to the object. It will take the ownership of the given string. |
Definition at line 29 of file Identifiable.cpp.
References te::xsd::Identifiable::m_id.
Referenced by te::serialize::ReadIdentifiable().
|
inherited |
It sets the maxOccurs value.
| maxOccurs | The maxOccurs value. The value can be any number >= 0. |
Definition at line 50 of file Occurs.cpp.
Referenced by te::serialize::ReadOccurs().
|
inherited |
It sets the minOccurs value.
| minOccurs | The minOccurs value. The value can be any number >= 0. |
Definition at line 45 of file Occurs.cpp.
Referenced by te::serialize::ReadOccurs().
| void te::xsd::Any::setNamespace | ( | std::string * | ns | ) |
| void te::xsd::Any::setProcessContents | ( | ProcessContents | pc | ) |
|
protectedinherited |
It specifies the maximum number of times the any element can occur in the parent element. The value can be any number >= 0, or if you want to set no limit on the maximum number, use the value "unbounded". Default value is 1. (Optional)
Definition at line 113 of file Occurs.h.
Referenced by te::xsd::Occurs::operator=().
|
protectedinherited |
It specifies the minimum number of times the any element can occur in the parent element. The value can be any number >= 0. Default value is 1. (Optional)
Definition at line 112 of file Occurs.h.
Referenced by te::xsd::Occurs::getMinOccurs(), and te::xsd::Occurs::operator=().
|
private |
It specifies the namespaces containing the elements that can be used. (Optional)
Definition at line 114 of file Any.h.
Referenced by Any(), and operator=().
|
private |
It specifies how the XML processor should handle validation against the elements specified by this any element. (Optional)
Definition at line 115 of file Any.h.
Referenced by Any(), and operator=().
|
staticinherited |
Identifer for "unbounded" max values.
Definition at line 108 of file Occurs.h.
Referenced by te::serialize::ReadOccurs().