1 Star 0 Fork 1

窦雪峰 / unioffice

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
ElementContainer.go 2.11 KB
一键复制 编辑 原始数据 按行查看 历史
Todd 提交于 2017-09-10 10:02 . schema: check for namespaces when decoding
// Copyright 2017 Baliance. All rights reserved.
//
// DO NOT EDIT: generated by gooxml ECMA-376 generator
//
// Use of this source code is governed by the terms of the Affero GNU General
// Public License version 3.0 as published by the Free Software Foundation and
// appearing in the file LICENSE included in the packaging of this file. A
// commercial license can be purchased by contacting sales@baliance.com.
package elements
import (
"encoding/xml"
"fmt"
"log"
)
type ElementContainer struct {
Choice []*ElementsGroupChoice
}
func NewElementContainer() *ElementContainer {
ret := &ElementContainer{}
return ret
}
func (m *ElementContainer) MarshalXML(e *xml.Encoder, start xml.StartElement) error {
start.Name.Local = "elementContainer"
e.EncodeToken(start)
if m.Choice != nil {
for _, c := range m.Choice {
c.MarshalXML(e, xml.StartElement{})
}
}
e.EncodeToken(xml.EndElement{Name: start.Name})
return nil
}
func (m *ElementContainer) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
// initialize to default
lElementContainer:
for {
tok, err := d.Token()
if err != nil {
return err
}
switch el := tok.(type) {
case xml.StartElement:
switch el.Name {
case xml.Name{Space: "http://purl.org/dc/elements/1.1/", Local: "any"}:
tmp := NewElementsGroupChoice()
if err := d.DecodeElement(&tmp.Any, &el); err != nil {
return err
}
m.Choice = append(m.Choice, tmp)
default:
log.Printf("skipping unsupported element on ElementContainer %v", el.Name)
if err := d.Skip(); err != nil {
return err
}
}
case xml.EndElement:
break lElementContainer
case xml.CharData:
}
}
return nil
}
// Validate validates the ElementContainer and its children
func (m *ElementContainer) Validate() error {
return m.ValidateWithPath("ElementContainer")
}
// ValidateWithPath validates the ElementContainer and its children, prefixing error messages with path
func (m *ElementContainer) ValidateWithPath(path string) error {
for i, v := range m.Choice {
if err := v.ValidateWithPath(fmt.Sprintf("%s/Choice[%d]", path, i)); err != nil {
return err
}
}
return nil
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/douxuefeng/unioffice.git
git@gitee.com:douxuefeng/unioffice.git
douxuefeng
unioffice
unioffice
v0.3.0

搜索帮助

344bd9b3 5694891 D2dac590 5694891