1 Star 2 Fork 1

wx-fork / unioffice

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
CT_GroupShapeChoice.go 4.41 KB
一键复制 编辑 原始数据 按行查看 历史
Todd 提交于 2017-09-29 20:52 . 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"
"fmt"
"baliance.com/gooxml"
)
type CT_GroupShapeChoice struct {
Sp []*CT_Shape
GrpSp []*CT_GroupShape
GraphicFrame []*CT_GraphicalObjectFrame
CxnSp []*CT_Connector
Pic []*CT_Picture
}
func NewCT_GroupShapeChoice() *CT_GroupShapeChoice {
ret := &CT_GroupShapeChoice{}
return ret
}
func (m *CT_GroupShapeChoice) MarshalXML(e *xml.Encoder, start xml.StartElement) error {
if m.Sp != nil {
sesp := xml.StartElement{Name: xml.Name{Local: "xdr:sp"}}
for _, c := range m.Sp {
e.EncodeElement(c, sesp)
}
}
if m.GrpSp != nil {
segrpSp := xml.StartElement{Name: xml.Name{Local: "xdr:grpSp"}}
for _, c := range m.GrpSp {
e.EncodeElement(c, segrpSp)
}
}
if m.GraphicFrame != nil {
segraphicFrame := xml.StartElement{Name: xml.Name{Local: "xdr:graphicFrame"}}
for _, c := range m.GraphicFrame {
e.EncodeElement(c, segraphicFrame)
}
}
if m.CxnSp != nil {
secxnSp := xml.StartElement{Name: xml.Name{Local: "xdr:cxnSp"}}
for _, c := range m.CxnSp {
e.EncodeElement(c, secxnSp)
}
}
if m.Pic != nil {
sepic := xml.StartElement{Name: xml.Name{Local: "xdr:pic"}}
for _, c := range m.Pic {
e.EncodeElement(c, sepic)
}
}
return nil
}
func (m *CT_GroupShapeChoice) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
// initialize to default
lCT_GroupShapeChoice:
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"}:
tmp := NewCT_Shape()
if err := d.DecodeElement(tmp, &el); err != nil {
return err
}
m.Sp = append(m.Sp, tmp)
case xml.Name{Space: "http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing", Local: "grpSp"}:
tmp := NewCT_GroupShape()
if err := d.DecodeElement(tmp, &el); err != nil {
return err
}
m.GrpSp = append(m.GrpSp, tmp)
case xml.Name{Space: "http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing", Local: "graphicFrame"}:
tmp := NewCT_GraphicalObjectFrame()
if err := d.DecodeElement(tmp, &el); err != nil {
return err
}
m.GraphicFrame = append(m.GraphicFrame, tmp)
case xml.Name{Space: "http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing", Local: "cxnSp"}:
tmp := NewCT_Connector()
if err := d.DecodeElement(tmp, &el); err != nil {
return err
}
m.CxnSp = append(m.CxnSp, tmp)
case xml.Name{Space: "http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing", Local: "pic"}:
tmp := NewCT_Picture()
if err := d.DecodeElement(tmp, &el); err != nil {
return err
}
m.Pic = append(m.Pic, tmp)
default:
gooxml.Log("skipping unsupported element on CT_GroupShapeChoice %v", el.Name)
if err := d.Skip(); err != nil {
return err
}
}
case xml.EndElement:
break lCT_GroupShapeChoice
case xml.CharData:
}
}
return nil
}
// Validate validates the CT_GroupShapeChoice and its children
func (m *CT_GroupShapeChoice) Validate() error {
return m.ValidateWithPath("CT_GroupShapeChoice")
}
// ValidateWithPath validates the CT_GroupShapeChoice and its children, prefixing error messages with path
func (m *CT_GroupShapeChoice) ValidateWithPath(path string) error {
for i, v := range m.Sp {
if err := v.ValidateWithPath(fmt.Sprintf("%s/Sp[%d]", path, i)); err != nil {
return err
}
}
for i, v := range m.GrpSp {
if err := v.ValidateWithPath(fmt.Sprintf("%s/GrpSp[%d]", path, i)); err != nil {
return err
}
}
for i, v := range m.GraphicFrame {
if err := v.ValidateWithPath(fmt.Sprintf("%s/GraphicFrame[%d]", path, i)); err != nil {
return err
}
}
for i, v := range m.CxnSp {
if err := v.ValidateWithPath(fmt.Sprintf("%s/CxnSp[%d]", path, i)); err != nil {
return err
}
}
for i, v := range m.Pic {
if err := v.ValidateWithPath(fmt.Sprintf("%s/Pic[%d]", path, i)); err != nil {
return err
}
}
return nil
}
1
https://gitee.com/wx-fork/unioffice.git
git@gitee.com:wx-fork/unioffice.git
wx-fork
unioffice
unioffice
v0.7.1

搜索帮助

53164aa7 5694891 3bd8fe86 5694891