代码拉取完成,页面将自动刷新
// 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"
// OnComplexType handles parsing event on the complex start elements. A
// complex element contains other elements and/or attributes.
func (opt *Options) OnComplexType(ele xml.StartElement, protoTree []interface{}) (err error) {
if opt.ComplexType.Len() > 0 {
e := opt.Element.Pop().(*Element)
opt.ComplexType.Push(&ComplexType{
Name: e.Name,
})
}
if opt.ComplexType.Len() == 0 {
c := ComplexType{}
opt.CurrentEle = opt.InElement
for _, attr := range ele.Attr {
if attr.Name.Local == "name" {
c.Name = attr.Value
}
}
if c.Name == "" {
e := opt.Element.Pop().(*Element)
c.Name = e.Name
}
opt.ComplexType.Push(&c)
}
return
}
// EndComplexType handles parsing event on the complex end elements.
func (opt *Options) EndComplexType(ele xml.EndElement, protoTree []interface{}) (err error) {
opt.ProtoTree = append(opt.ProtoTree, opt.ComplexType.Pop())
opt.CurrentEle = ""
return
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。