1 Star 2 Fork 1

wx-fork/unioffice

Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
Clone or Download
CT_EffectStyleItem.go 3.54 KB
Copy Edit Raw Blame History
Todd authored 2017-09-23 08:39 . schema: rename drawingml to dml
// 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 dml
import (
"encoding/xml"
"log"
)
type CT_EffectStyleItem struct {
EffectLst *CT_EffectList
EffectDag *CT_EffectContainer
Scene3d *CT_Scene3D
Sp3d *CT_Shape3D
}
func NewCT_EffectStyleItem() *CT_EffectStyleItem {
ret := &CT_EffectStyleItem{}
return ret
}
func (m *CT_EffectStyleItem) MarshalXML(e *xml.Encoder, start xml.StartElement) error {
e.EncodeToken(start)
if m.EffectLst != nil {
seeffectLst := xml.StartElement{Name: xml.Name{Local: "a:effectLst"}}
e.EncodeElement(m.EffectLst, seeffectLst)
}
if m.EffectDag != nil {
seeffectDag := xml.StartElement{Name: xml.Name{Local: "a:effectDag"}}
e.EncodeElement(m.EffectDag, seeffectDag)
}
if m.Scene3d != nil {
sescene3d := xml.StartElement{Name: xml.Name{Local: "a:scene3d"}}
e.EncodeElement(m.Scene3d, sescene3d)
}
if m.Sp3d != nil {
sesp3d := xml.StartElement{Name: xml.Name{Local: "a:sp3d"}}
e.EncodeElement(m.Sp3d, sesp3d)
}
e.EncodeToken(xml.EndElement{Name: start.Name})
return nil
}
func (m *CT_EffectStyleItem) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
// initialize to default
lCT_EffectStyleItem:
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/main", Local: "effectLst"}:
m.EffectLst = NewCT_EffectList()
if err := d.DecodeElement(m.EffectLst, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/drawingml/2006/main", Local: "effectDag"}:
m.EffectDag = NewCT_EffectContainer()
if err := d.DecodeElement(m.EffectDag, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/drawingml/2006/main", Local: "scene3d"}:
m.Scene3d = NewCT_Scene3D()
if err := d.DecodeElement(m.Scene3d, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/drawingml/2006/main", Local: "sp3d"}:
m.Sp3d = NewCT_Shape3D()
if err := d.DecodeElement(m.Sp3d, &el); err != nil {
return err
}
default:
log.Printf("skipping unsupported element on CT_EffectStyleItem %v", el.Name)
if err := d.Skip(); err != nil {
return err
}
}
case xml.EndElement:
break lCT_EffectStyleItem
case xml.CharData:
}
}
return nil
}
// Validate validates the CT_EffectStyleItem and its children
func (m *CT_EffectStyleItem) Validate() error {
return m.ValidateWithPath("CT_EffectStyleItem")
}
// ValidateWithPath validates the CT_EffectStyleItem and its children, prefixing error messages with path
func (m *CT_EffectStyleItem) ValidateWithPath(path string) error {
if m.EffectLst != nil {
if err := m.EffectLst.ValidateWithPath(path + "/EffectLst"); err != nil {
return err
}
}
if m.EffectDag != nil {
if err := m.EffectDag.ValidateWithPath(path + "/EffectDag"); err != nil {
return err
}
}
if m.Scene3d != nil {
if err := m.Scene3d.ValidateWithPath(path + "/Scene3d"); err != nil {
return err
}
}
if m.Sp3d != nil {
if err := m.Sp3d.ValidateWithPath(path + "/Sp3d"); err != nil {
return err
}
}
return nil
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wx-fork/unioffice.git
git@gitee.com:wx-fork/unioffice.git
wx-fork
unioffice
unioffice
v0.4.0

Search