1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
|
/*
This file is part of KDE Schema Parser
Copyright (c) 2005 Tobias Koenig <tokoe@kde.org>
based on wsdlpull parser by Vivek Krishna
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#ifndef SCHEMA_COMPLEXTYPE_H
#define SCHEMA_COMPLEXTYPE_H
#include <QString>
#include <schema/attribute.h>
#include <schema/attributegroup.h>
#include <schema/group.h>
#include <schema/element.h>
#include <schema/xsdtype.h>
#include <common/qname.h>
#include <kode_export.h>
namespace XSD {
class ComplexTypeList;
class SCHEMA_EXPORT ComplexType : public XSDType
{
public:
typedef ComplexTypeList List;
typedef enum { Restriction, Extension } Derivation;
ComplexType();
explicit ComplexType(const QString &nameSpace);
ComplexType(const ComplexType &other);
ComplexType(ComplexType &&other);
~ComplexType();
ComplexType &operator=(const ComplexType &other);
ComplexType &operator=(ComplexType &&other) noexcept;
void setDocumentation(const QString &documentation);
QString documentation() const;
bool isSimple() const override;
// True if this is the base class for other (derived) complex types
bool isPolymorphicBaseClass() const;
void setAnonymous(bool anonymous);
bool isAnonymous() const;
void setConflicting(bool c);
bool isConflicting() const;
void setBaseDerivation(Derivation derivation);
Derivation baseDerivation() const;
void setBaseTypeName(const QName &baseTypeName);
QName baseTypeName() const;
void addDerivedType(const QName &derivedTypeName);
QList<QName> derivedTypes() const;
void setElements(const Element::List &elements);
Element::List elements() const;
void setGroups(const Group::List &groups);
void addGroup(const Group &group);
Group::List groups() const;
void setAttributes(const Attribute::List &attributes);
Attribute::List attributes() const;
Attribute attribute(const QName &attrName) const;
void addAttributeGroups(const AttributeGroup &attributeGroups);
void setAttributeGroups(const AttributeGroup::List &attributeGroups);
AttributeGroup::List attributeGroups() const;
void setArrayType(const QName &arrayType);
QName arrayType() const;
bool isArray() const;
void addAttribute(const Attribute &attribute);
void addElement(const Element &element);
bool isEmpty() const;
bool operator==(const ComplexType &other) const;
inline bool operator!=(const ComplexType &other) const { return !(*this == other); }
private:
class Private;
std::unique_ptr<Private> d;
};
class SCHEMA_EXPORT ComplexTypeList : public QList<ComplexType>
{
public:
ComplexTypeList(const QList<ComplexType> &arg) : QList<ComplexType>(arg) {}
ComplexTypeList() : QList<ComplexType>() {}
// Readonly lookup, returns null type if not found
ComplexType complexType(const QName &qualifiedName) const;
// Mutable lookup (for making changes), returns end() if not found
iterator findComplexType(const QName &qualifiedName);
};
} // namespace XSD
SCHEMA_EXPORT QDebug operator<<(QDebug dbg, const XSD::ComplexType &type);
#endif
|