This repository has been archived by the owner on Jun 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathhaselem.go
197 lines (148 loc) · 4.13 KB
/
haselem.go
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
package xsd
type hasCdata struct {
CDATA string `xml:",chardata"`
}
type hasElemAll struct {
All *All `xml:"all"`
}
type hasElemAnnotation struct {
Annotation *Annotation `xml:"annotation"`
}
type hasElemsAny struct {
Anys []*Any `xml:"any"`
}
type hasElemsAnyAttribute struct {
AnyAttributes []*AnyAttribute `xml:"anyAttribute"`
}
type hasElemsAppInfo struct {
AppInfos []*AppInfo `xml:"appinfo"`
}
type hasElemsAttribute struct {
Attributes []*Attribute `xml:"attribute"`
}
type hasElemsAttributeGroup struct {
AttributeGroups []*AttributeGroup `xml:"attributeGroup"`
}
type hasElemChoice struct {
Choice *Choice `xml:"choice"`
}
type hasElemsChoice struct {
Choices []*Choice `xml:"choice"`
}
type hasElemComplexContent struct {
ComplexContent *ComplexContent `xml:"complexContent"`
}
type hasElemComplexType struct {
ComplexType *ComplexType `xml:"complexType"`
}
type hasElemsComplexType struct {
ComplexTypes []*ComplexType `xml:"complexType"`
}
type hasElemsDocumentation struct {
Documentations []*Documentation `xml:"documentation"`
}
type hasElemsElement struct {
Elements []*Element `xml:"element"`
}
type hasElemsEnumeration struct {
Enumerations []*RestrictionSimpleEnumeration `xml:"enumeration"`
}
type hasElemExtensionComplexContent struct {
ExtensionComplexContent *ExtensionComplexContent `xml:"extension"`
}
type hasElemExtensionSimpleContent struct {
ExtensionSimpleContent *ExtensionSimpleContent `xml:"extension"`
}
type hasElemField struct {
Field *Field `xml:"field"`
}
type hasElemFractionDigits struct {
FractionDigits *RestrictionSimpleFractionDigits `xml:"fractionDigits"`
}
type hasElemGroup struct {
Group *Group `xml:"group"`
}
type hasElemsGroup struct {
Groups []*Group `xml:"group"`
}
type hasElemsImport struct {
Imports []*Import `xml:"import"`
}
type hasElemsInclude struct {
Includes []*Include `xml:"include"`
}
type hasElemsKey struct {
Keys []*Key `xml:"key"`
}
type hasElemKeyRef struct {
KeyRef *KeyRef `xml:"keyref"`
}
type hasElemLength struct {
Length *RestrictionSimpleLength `xml:"length"`
}
type hasElemList struct {
List *List `xml:"list"`
}
type hasElemMaxExclusive struct {
MaxExclusive *RestrictionSimpleMaxExclusive `xml:"maxExclusive"`
}
type hasElemMaxInclusive struct {
MaxInclusive *RestrictionSimpleMaxInclusive `xml:"maxInclusive"`
}
type hasElemMaxLength struct {
MaxLength *RestrictionSimpleMaxLength `xml:"maxLength"`
}
type hasElemMinExclusive struct {
MinExclusive *RestrictionSimpleMinExclusive `xml:"minExclusive"`
}
type hasElemMinInclusive struct {
MinInclusive *RestrictionSimpleMinInclusive `xml:"minInclusive"`
}
type hasElemMinLength struct {
MinLength *RestrictionSimpleMinLength `xml:"minLength"`
}
type hasElemsNotation struct {
Notations []*Notation `xml:"notation"`
}
type hasElemPattern struct {
Pattern *RestrictionSimplePattern `xml:"pattern"`
}
type hasElemsRedefine struct {
Redefines []*Redefine `xml:"redefine"`
}
type hasElemRestrictionComplexContent struct {
RestrictionComplexContent *RestrictionComplexContent `xml:"restriction"`
}
type hasElemRestrictionSimpleContent struct {
RestrictionSimpleContent *RestrictionSimpleContent `xml:"restriction"`
}
type hasElemRestrictionSimpleType struct {
RestrictionSimpleType *RestrictionSimpleType `xml:"restriction"`
}
type hasElemSelector struct {
Selector *Selector `xml:"selector"`
}
type hasElemSequence struct {
Sequence *Sequence `xml:"sequence"`
}
type hasElemsSequence struct {
Sequences []*Sequence `xml:"sequence"`
}
type hasElemSimpleContent struct {
SimpleContent *SimpleContent `xml:"simpleContent"`
}
type hasElemsSimpleType struct {
SimpleTypes []*SimpleType `xml:"simpleType"`
}
type hasElemTotalDigits struct {
TotalDigits *RestrictionSimpleTotalDigits `xml:"totalDigits"`
}
type hasElemUnion struct {
Union *Union `xml:"union"`
}
type hasElemUnique struct {
Unique *Unique `xml:"unique"`
}
type hasElemWhiteSpace struct {
WhiteSpace *RestrictionSimpleWhiteSpace `xml:"whiteSpace"`
}