forked from xuri/xgen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
xmlMinExclusive.go
24 lines (21 loc) · 891 Bytes
/
xmlMinExclusive.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
// Copyright 2020 - 2021 The xgen Authors. All rights reserved. Use of this
// source code is governed by a BSD-style license that can be found in the
// LICENSE file.
//
// Package xgen written in pure Go providing a set of functions that allow you
// to parse XSD (XML schema files). This library needs Go version 1.10 or
// later.
package xgen
import "encoding/xml"
// EndMinExclusive handles parsing event on the minExclusive end elements.
// MinExclusive specifies the lower bounds for numeric values (the value must
// be greater than this value).
func (opt *Options) EndMinExclusive(ele xml.EndElement, protoTree []interface{}) (err error) {
if opt.SimpleType.Len() > 0 && opt.Element.Len() > 0 {
if opt.Element.Peek().(*Element).Type, err = opt.GetValueType(opt.SimpleType.Pop().(*SimpleType).Base, opt.ProtoTree); err != nil {
return
}
opt.CurrentEle = ""
}
return
}