|
|
| XSParticle (TERM_TYPE termType, XSModel *const xsModel, XSObject *const particleTerm, XMLSize_t minOccurs, XMLSize_t maxOccurs, bool unbounded, MemoryManager *const manager) |
| The default constructor. More...
|
|
|
| ~XSParticle () |
|
|
XMLSize_t | getMinOccurs () const |
| [min occurs]: determines the minimum number of terms that can occur. More...
|
|
XMLSize_t | getMaxOccurs () const |
| [max occurs] determines the maximum number of terms that can occur. More...
|
|
bool | getMaxOccursUnbounded () const |
| [max occurs] whether the maxOccurs value is unbounded. More...
|
|
TERM_TYPE | getTermType () const |
| Returns the type of the [term]: one of TERM_EMPTY, TERM_ELEMENT, TERM_MODELGROUP, or TERM_WILDCARD. More...
|
|
XSElementDeclaration * | getElementTerm () |
| If this particle has an [element declaration] for its term, this method returns that declaration; otherwise, it returns 0. More...
|
|
XSModelGroup * | getModelGroupTerm () |
| If this particle has a [model group] for its term, this method returns that definition; otherwise, it returns 0. More...
|
|
XSWildcard * | getWildcardTerm () |
| If this particle has an [wildcard] for its term, this method returns that declaration; otherwise, it returns 0. More...
|
|
| XSObject (XSConstants::COMPONENT_TYPE compType, XSModel *const xsModel, MemoryManager *const manager=XMLPlatformUtils::fgMemoryManager) |
| The default constructor. More...
|
|
virtual | ~XSObject () |
|
XSConstants::COMPONENT_TYPE | getType () const |
| The type of this object, i.e. More...
|
|
virtual const XMLCh * | getName () const |
| The name of type NCName of this declaration as defined in XML Namespaces. More...
|
|
virtual const XMLCh * | getNamespace () |
| The [target namespace] of this object, or null if it is unspecified. More...
|
|
virtual XSNamespaceItem * | getNamespaceItem () |
| A namespace schema information item corresponding to the target namespace of the component, if it's globally declared; or null otherwise. More...
|
|
virtual XMLSize_t | getId () const |
| Optional. More...
|
|
void | setId (XMLSize_t id) |
| methods needed by implementation More...
|
|
void * | operator new (size_t size) |
| This method overrides operator new. More...
|
|
void * | operator new (size_t size, MemoryManager *memMgr) |
| This method defines a custom operator new, that will use the provided memory manager to perform the allocation. More...
|
|
void * | operator new (size_t size, void *ptr) |
| This method overrides placement operator new. More...
|
|
void | operator delete (void *p) |
| This method overrides operator delete. More...
|
|
void | operator delete (void *p, MemoryManager *memMgr) |
| This method provides a matching delete for the custom operator new. More...
|
|
void | operator delete (void *p, void *ptr) |
| This method provides a matching delete for the placement new. More...
|
|