1/****************************************************************************
2**
3** Copyright (C) 2016 The Qt Company Ltd.
4** Contact: https://www.qt.io/licensing/
5**
6** This file is part of the QtXmlPatterns module of the Qt Toolkit.
7**
8** $QT_BEGIN_LICENSE:LGPL$
9** Commercial License Usage
10** Licensees holding valid commercial Qt licenses may use this file in
11** accordance with the commercial license agreement provided with the
12** Software or, alternatively, in accordance with the terms contained in
13** a written agreement between you and The Qt Company. For licensing terms
14** and conditions see https://www.qt.io/terms-conditions. For further
15** information use the contact form at https://www.qt.io/contact-us.
16**
17** GNU Lesser General Public License Usage
18** Alternatively, this file may be used under the terms of the GNU Lesser
19** General Public License version 3 as published by the Free Software
20** Foundation and appearing in the file LICENSE.LGPL3 included in the
21** packaging of this file. Please review the following information to
22** ensure the GNU Lesser General Public License version 3 requirements
23** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
24**
25** GNU General Public License Usage
26** Alternatively, this file may be used under the terms of the GNU
27** General Public License version 2.0 or (at your option) the GNU General
28** Public license version 3 or any later version approved by the KDE Free
29** Qt Foundation. The licenses are as published by the Free Software
30** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
31** included in the packaging of this file. Please review the following
32** information to ensure the GNU General Public License requirements will
33** be met: https://www.gnu.org/licenses/gpl-2.0.html and
34** https://www.gnu.org/licenses/gpl-3.0.html.
35**
36** $QT_END_LICENSE$
37**
38****************************************************************************/
39
40#include "qxsdcomplextype_p.h"
41
42QT_BEGIN_NAMESPACE
43
44using namespace QPatternist;
45
46void XsdComplexType::OpenContent::setMode(Mode mode)
47{
48 m_mode = mode;
49}
50
51XsdComplexType::OpenContent::Mode XsdComplexType::OpenContent::mode() const
52{
53 return m_mode;
54}
55
56void XsdComplexType::OpenContent::setWildcard(const XsdWildcard::Ptr &wildcard)
57{
58 m_wildcard = wildcard;
59}
60
61XsdWildcard::Ptr XsdComplexType::OpenContent::wildcard() const
62{
63 return m_wildcard;
64}
65
66void XsdComplexType::ContentType::setVariety(Variety variety)
67{
68 m_variety = variety;
69}
70
71XsdComplexType::ContentType::Variety XsdComplexType::ContentType::variety() const
72{
73 return m_variety;
74}
75
76void XsdComplexType::ContentType::setParticle(const XsdParticle::Ptr &particle)
77{
78 m_particle = particle;
79}
80
81XsdParticle::Ptr XsdComplexType::ContentType::particle() const
82{
83 return m_particle;
84}
85
86void XsdComplexType::ContentType::setOpenContent(const OpenContent::Ptr &content)
87{
88 m_openContent = content;
89}
90
91XsdComplexType::OpenContent::Ptr XsdComplexType::ContentType::openContent() const
92{
93 return m_openContent;
94}
95
96void XsdComplexType::ContentType::setSimpleType(const AnySimpleType::Ptr &type)
97{
98 m_simpleType = type;
99}
100
101AnySimpleType::Ptr XsdComplexType::ContentType::simpleType() const
102{
103 return m_simpleType;
104}
105
106
107XsdComplexType::XsdComplexType()
108 : m_isAbstract(false)
109 , m_contentType(new ContentType())
110{
111 m_contentType->setVariety(ContentType::Empty);
112}
113
114void XsdComplexType::setIsAbstract(bool abstract)
115{
116 m_isAbstract = abstract;
117}
118
119bool XsdComplexType::isAbstract() const
120{
121 return m_isAbstract;
122}
123
124QString XsdComplexType::displayName(const NamePool::Ptr &np) const
125{
126 return np->displayName(qName: name(np));
127}
128
129void XsdComplexType::setWxsSuperType(const SchemaType::Ptr &type)
130{
131 m_superType = type;
132}
133
134SchemaType::Ptr XsdComplexType::wxsSuperType() const
135{
136 return m_superType;
137}
138
139void XsdComplexType::setContext(const NamedSchemaComponent::Ptr &component)
140{
141 m_context = component;
142}
143
144NamedSchemaComponent::Ptr XsdComplexType::context() const
145{
146 return m_context;
147}
148
149void XsdComplexType::setContentType(const ContentType::Ptr &type)
150{
151 m_contentType = type;
152}
153
154XsdComplexType::ContentType::Ptr XsdComplexType::contentType() const
155{
156 return m_contentType;
157}
158
159void XsdComplexType::setAttributeUses(const XsdAttributeUse::List &attributeUses)
160{
161 m_attributeUses = attributeUses;
162}
163
164void XsdComplexType::addAttributeUse(const XsdAttributeUse::Ptr &attributeUse)
165{
166 m_attributeUses.append(t: attributeUse);
167}
168
169XsdAttributeUse::List XsdComplexType::attributeUses() const
170{
171 return m_attributeUses;
172}
173
174void XsdComplexType::setAttributeWildcard(const XsdWildcard::Ptr &wildcard)
175{
176 m_attributeWildcard = wildcard;
177}
178
179XsdWildcard::Ptr XsdComplexType::attributeWildcard() const
180{
181 return m_attributeWildcard;
182}
183
184XsdComplexType::TypeCategory XsdComplexType::category() const
185{
186 return ComplexType;
187}
188
189void XsdComplexType::setDerivationMethod(DerivationMethod method)
190{
191 m_derivationMethod = method;
192}
193
194XsdComplexType::DerivationMethod XsdComplexType::derivationMethod() const
195{
196 return m_derivationMethod;
197}
198
199void XsdComplexType::setProhibitedSubstitutions(const BlockingConstraints &substitutions)
200{
201 m_prohibitedSubstitutions = substitutions;
202}
203
204XsdComplexType::BlockingConstraints XsdComplexType::prohibitedSubstitutions() const
205{
206 return m_prohibitedSubstitutions;
207}
208
209void XsdComplexType::setAssertions(const XsdAssertion::List &assertions)
210{
211 m_assertions = assertions;
212}
213
214void XsdComplexType::addAssertion(const XsdAssertion::Ptr &assertion)
215{
216 m_assertions.append(t: assertion);
217}
218
219XsdAssertion::List XsdComplexType::assertions() const
220{
221 return m_assertions;
222}
223
224bool XsdComplexType::isDefinedBySchema() const
225{
226 return true;
227}
228
229QT_END_NAMESPACE
230

source code of qtxmlpatterns/src/xmlpatterns/schema/qxsdcomplextype.cpp