1 Star 2 Fork 1

wx-fork/unioffice

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
EG_ObjectChoices.go 3.19 KB
一键复制 编辑 原始数据 按行查看 历史
Todd 提交于 2017-09-30 09:52 +08:00 . gooxml: add and use a Log function
// 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 spreadsheetDrawing
import (
"encoding/xml"
"baliance.com/gooxml"
)
type EG_ObjectChoices struct {
Choice *EG_ObjectChoicesChoice
}
func NewEG_ObjectChoices() *EG_ObjectChoices {
ret := &EG_ObjectChoices{}
return ret
}
func (m *EG_ObjectChoices) MarshalXML(e *xml.Encoder, start xml.StartElement) error {
if m.Choice != nil {
m.Choice.MarshalXML(e, xml.StartElement{})
}
return nil
}
func (m *EG_ObjectChoices) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
// initialize to default
lEG_ObjectChoices:
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://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing", Local: "sp"}:
m.Choice = NewEG_ObjectChoicesChoice()
if err := d.DecodeElement(&m.Choice.Sp, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing", Local: "grpSp"}:
m.Choice = NewEG_ObjectChoicesChoice()
if err := d.DecodeElement(&m.Choice.GrpSp, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing", Local: "graphicFrame"}:
m.Choice = NewEG_ObjectChoicesChoice()
if err := d.DecodeElement(&m.Choice.GraphicFrame, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing", Local: "cxnSp"}:
m.Choice = NewEG_ObjectChoicesChoice()
if err := d.DecodeElement(&m.Choice.CxnSp, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing", Local: "pic"}:
m.Choice = NewEG_ObjectChoicesChoice()
if err := d.DecodeElement(&m.Choice.Pic, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing", Local: "contentPart"}:
m.Choice = NewEG_ObjectChoicesChoice()
if err := d.DecodeElement(&m.Choice.ContentPart, &el); err != nil {
return err
}
default:
gooxml.Log("skipping unsupported element on EG_ObjectChoices %v", el.Name)
if err := d.Skip(); err != nil {
return err
}
}
case xml.EndElement:
break lEG_ObjectChoices
case xml.CharData:
}
}
return nil
}
// Validate validates the EG_ObjectChoices and its children
func (m *EG_ObjectChoices) Validate() error {
return m.ValidateWithPath("EG_ObjectChoices")
}
// ValidateWithPath validates the EG_ObjectChoices and its children, prefixing error messages with path
func (m *EG_ObjectChoices) ValidateWithPath(path string) error {
if m.Choice != nil {
if err := m.Choice.ValidateWithPath(path + "/Choice"); err != nil {
return err
}
}
return nil
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wx-fork/unioffice.git
git@gitee.com:wx-fork/unioffice.git
wx-fork
unioffice
unioffice
v0.7.1

搜索帮助