/**************************************************************************** ** ** Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies). ** Contact: Qt Software Information (qt-info@nokia.com) ** ** This file is part of the $MODULE$ of the Qt Toolkit. ** ** $TROLLTECH_DUAL_LICENSE$ ** ****************************************************************************/ // // W A R N I N G // ------------- // // This file is not part of the Qt API. It exists purely as an // implementation detail. This header file may change from version to // version without notice, or even be removed. // // We mean it. #ifndef Patternist_XsdParticle_H #define Patternist_XsdParticle_H #include "qnamedschemacomponent_p.h" #include "qxsdterm_p.h" #include QT_BEGIN_HEADER QT_BEGIN_NAMESPACE namespace QPatternist { /** * @short Represents a XSD particle object. * * This class represents the particle object of a XML schema as described * here. * * It contains information about the number of occurrence and a reference to * either an element object, a group object or an any object. * * @see XML Schema API reference * @ingroup Patternist_schema * @author Tobias Koenig */ class XsdParticle : public NamedSchemaComponent { public: typedef QExplicitlySharedDataPointer Ptr; typedef QList List; /** * Creates a new particle object. */ XsdParticle(); /** * Sets the minimum @p occurrence of the particle. * * @see Minimum Occurrence Definition */ void setMinimumOccurs(unsigned int occurrence); /** * Returns the minimum occurrence of the particle. */ unsigned int minimumOccurs() const; /** * Sets the maximum @p occurrence of the particle. * * @see Maximum Occurrence Definition */ void setMaximumOccurs(unsigned int occurrence); /** * Returns the maximum occurrence of the particle. * * @note This value has only a meaning if maximumOccursUnbounded is @c false. */ unsigned int maximumOccurs() const; /** * Sets whether the maximum occurrence of the particle is unbounded. * * @see Maximum Occurrence Definition */ void setMaximumOccursUnbounded(bool unbounded); /** * Returns whether the maximum occurrence of the particle is unbounded. */ bool maximumOccursUnbounded() const; /** * Sets the @p term of the particle. * * The term can be an element, a model group or an element wildcard. * * @see Term Definition */ void setTerm(const XsdTerm::Ptr &term); /** * Returns the term of the particle. */ XsdTerm::Ptr term() const; private: unsigned int m_minimumOccurs; unsigned int m_maximumOccurs; bool m_maximumOccursUnbounded; XsdTerm::Ptr m_term; }; } QT_END_NAMESPACE QT_END_HEADER #endif