/**************************************************************************** ** ** Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies). ** Contact: Qt Software Information (qt-info@nokia.com) ** ** This file is part of the QtXmlPatterns of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions ** contained in the either Technology Preview License Agreement or the ** Beta Release License Agreement. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 2.1 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 2.1 requirements ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain ** additional rights. These rights are described in the Nokia Qt LGPL ** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this ** package. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 3.0 as published by the Free Software ** Foundation and appearing in the file LICENSE.GPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU General Public License version 3.0 requirements will be ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please ** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ #include "qxsdcomplextype_p.h" QT_BEGIN_NAMESPACE using namespace QPatternist; void XsdComplexType::OpenContent::setMode(Mode mode) { m_mode = mode; } XsdComplexType::OpenContent::Mode XsdComplexType::OpenContent::mode() const { return m_mode; } void XsdComplexType::OpenContent::setWildcard(const XsdWildcard::Ptr &wildcard) { m_wildcard = wildcard; } XsdWildcard::Ptr XsdComplexType::OpenContent::wildcard() const { return m_wildcard; } void XsdComplexType::ContentType::setVariety(Variety variety) { m_variety = variety; } XsdComplexType::ContentType::Variety XsdComplexType::ContentType::variety() const { return m_variety; } void XsdComplexType::ContentType::setParticle(const XsdParticle::Ptr &particle) { m_particle = particle; } XsdParticle::Ptr XsdComplexType::ContentType::particle() const { return m_particle; } void XsdComplexType::ContentType::setOpenContent(const OpenContent::Ptr &content) { m_openContent = content; } XsdComplexType::OpenContent::Ptr XsdComplexType::ContentType::openContent() const { return m_openContent; } void XsdComplexType::ContentType::setSimpleType(const AnySimpleType::Ptr &type) { m_simpleType = type; } AnySimpleType::Ptr XsdComplexType::ContentType::simpleType() const { return m_simpleType; } XsdComplexType::XsdComplexType() : m_isAbstract(false) , m_contentType(new ContentType()) { m_contentType->setVariety(ContentType::Empty); } void XsdComplexType::setIsAbstract(bool abstract) { m_isAbstract = abstract; } bool XsdComplexType::isAbstract() const { return m_isAbstract; } QString XsdComplexType::displayName(const NamePool::Ptr &np) const { return np->displayName(name(np)); } void XsdComplexType::setWxsSuperType(const SchemaType::Ptr &type) { m_superType = type; } SchemaType::Ptr XsdComplexType::wxsSuperType() const { return m_superType; } void XsdComplexType::setContext(const NamedSchemaComponent::Ptr &component) { m_context = component; } NamedSchemaComponent::Ptr XsdComplexType::context() const { return m_context; } void XsdComplexType::setContentType(const ContentType::Ptr &type) { m_contentType = type; } XsdComplexType::ContentType::Ptr XsdComplexType::contentType() const { return m_contentType; } void XsdComplexType::setAttributeUses(const XsdAttributeUse::List &attributeUses) { m_attributeUses = attributeUses; } void XsdComplexType::addAttributeUse(const XsdAttributeUse::Ptr &attributeUse) { m_attributeUses.append(attributeUse); } XsdAttributeUse::List XsdComplexType::attributeUses() const { return m_attributeUses; } void XsdComplexType::setAttributeWildcard(const XsdWildcard::Ptr &wildcard) { m_attributeWildcard = wildcard; } XsdWildcard::Ptr XsdComplexType::attributeWildcard() const { return m_attributeWildcard; } XsdComplexType::TypeCategory XsdComplexType::category() const { return ComplexType; } void XsdComplexType::setDerivationMethod(DerivationMethod method) { m_derivationMethod = method; } XsdComplexType::DerivationMethod XsdComplexType::derivationMethod() const { return m_derivationMethod; } void XsdComplexType::setProhibitedSubstitutions(const BlockingConstraints &substitutions) { m_prohibitedSubstitutions = substitutions; } XsdComplexType::BlockingConstraints XsdComplexType::prohibitedSubstitutions() const { return m_prohibitedSubstitutions; } void XsdComplexType::setAssertions(const XsdAssertion::List &assertions) { m_assertions = assertions; } void XsdComplexType::addAssertion(const XsdAssertion::Ptr &assertion) { m_assertions.append(assertion); } XsdAssertion::List XsdComplexType::assertions() const { return m_assertions; } bool XsdComplexType::isDefinedBySchema() const { return true; } QT_END_NAMESPACE