unioffice/schema/soo/dml/chart/CT_DLbls.go
2019-05-04 13:54:29 +00:00

223 lines
7.6 KiB
Go

// 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 chart
import (
"encoding/xml"
"fmt"
"github.com/unidoc/unioffice"
)
type CT_DLbls struct {
DLbl []*CT_DLbl
Choice *CT_DLblsChoice
ExtLst *CT_ExtensionList
}
func NewCT_DLbls() *CT_DLbls {
ret := &CT_DLbls{}
return ret
}
func (m *CT_DLbls) MarshalXML(e *xml.Encoder, start xml.StartElement) error {
e.EncodeToken(start)
if m.DLbl != nil {
sedLbl := xml.StartElement{Name: xml.Name{Local: "c:dLbl"}}
for _, c := range m.DLbl {
e.EncodeElement(c, sedLbl)
}
}
if m.Choice != nil {
m.Choice.MarshalXML(e, xml.StartElement{})
}
if m.ExtLst != nil {
seextLst := xml.StartElement{Name: xml.Name{Local: "c:extLst"}}
e.EncodeElement(m.ExtLst, seextLst)
}
e.EncodeToken(xml.EndElement{Name: start.Name})
return nil
}
func (m *CT_DLbls) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
// initialize to default
lCT_DLbls:
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/chart", Local: "dLbl"},
xml.Name{Space: "http://purl.oclc.org/ooxml/drawingml/chart", Local: "dLbl"}:
tmp := NewCT_DLbl()
if err := d.DecodeElement(tmp, &el); err != nil {
return err
}
m.DLbl = append(m.DLbl, tmp)
case xml.Name{Space: "http://schemas.openxmlformats.org/drawingml/2006/chart", Local: "delete"},
xml.Name{Space: "http://purl.oclc.org/ooxml/drawingml/chart", Local: "delete"}:
if m.Choice == nil {
m.Choice = NewCT_DLblsChoice()
}
if err := d.DecodeElement(&m.Choice.Delete, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/drawingml/2006/chart", Local: "numFmt"},
xml.Name{Space: "http://purl.oclc.org/ooxml/drawingml/chart", Local: "numFmt"}:
if m.Choice == nil {
m.Choice = NewCT_DLblsChoice()
}
if err := d.DecodeElement(&m.Choice.NumFmt, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/drawingml/2006/chart", Local: "spPr"},
xml.Name{Space: "http://purl.oclc.org/ooxml/drawingml/chart", Local: "spPr"}:
if m.Choice == nil {
m.Choice = NewCT_DLblsChoice()
}
if err := d.DecodeElement(&m.Choice.SpPr, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/drawingml/2006/chart", Local: "txPr"},
xml.Name{Space: "http://purl.oclc.org/ooxml/drawingml/chart", Local: "txPr"}:
if m.Choice == nil {
m.Choice = NewCT_DLblsChoice()
}
if err := d.DecodeElement(&m.Choice.TxPr, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/drawingml/2006/chart", Local: "dLblPos"},
xml.Name{Space: "http://purl.oclc.org/ooxml/drawingml/chart", Local: "dLblPos"}:
if m.Choice == nil {
m.Choice = NewCT_DLblsChoice()
}
if err := d.DecodeElement(&m.Choice.DLblPos, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/drawingml/2006/chart", Local: "showLegendKey"},
xml.Name{Space: "http://purl.oclc.org/ooxml/drawingml/chart", Local: "showLegendKey"}:
if m.Choice == nil {
m.Choice = NewCT_DLblsChoice()
}
if err := d.DecodeElement(&m.Choice.ShowLegendKey, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/drawingml/2006/chart", Local: "showVal"},
xml.Name{Space: "http://purl.oclc.org/ooxml/drawingml/chart", Local: "showVal"}:
if m.Choice == nil {
m.Choice = NewCT_DLblsChoice()
}
if err := d.DecodeElement(&m.Choice.ShowVal, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/drawingml/2006/chart", Local: "showCatName"},
xml.Name{Space: "http://purl.oclc.org/ooxml/drawingml/chart", Local: "showCatName"}:
if m.Choice == nil {
m.Choice = NewCT_DLblsChoice()
}
if err := d.DecodeElement(&m.Choice.ShowCatName, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/drawingml/2006/chart", Local: "showSerName"},
xml.Name{Space: "http://purl.oclc.org/ooxml/drawingml/chart", Local: "showSerName"}:
if m.Choice == nil {
m.Choice = NewCT_DLblsChoice()
}
if err := d.DecodeElement(&m.Choice.ShowSerName, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/drawingml/2006/chart", Local: "showPercent"},
xml.Name{Space: "http://purl.oclc.org/ooxml/drawingml/chart", Local: "showPercent"}:
if m.Choice == nil {
m.Choice = NewCT_DLblsChoice()
}
if err := d.DecodeElement(&m.Choice.ShowPercent, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/drawingml/2006/chart", Local: "showBubbleSize"},
xml.Name{Space: "http://purl.oclc.org/ooxml/drawingml/chart", Local: "showBubbleSize"}:
if m.Choice == nil {
m.Choice = NewCT_DLblsChoice()
}
if err := d.DecodeElement(&m.Choice.ShowBubbleSize, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/drawingml/2006/chart", Local: "separator"},
xml.Name{Space: "http://purl.oclc.org/ooxml/drawingml/chart", Local: "separator"}:
if m.Choice == nil {
m.Choice = NewCT_DLblsChoice()
}
if err := d.DecodeElement(&m.Choice.Separator, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/drawingml/2006/chart", Local: "showLeaderLines"},
xml.Name{Space: "http://purl.oclc.org/ooxml/drawingml/chart", Local: "showLeaderLines"}:
if m.Choice == nil {
m.Choice = NewCT_DLblsChoice()
}
if err := d.DecodeElement(&m.Choice.ShowLeaderLines, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/drawingml/2006/chart", Local: "leaderLines"},
xml.Name{Space: "http://purl.oclc.org/ooxml/drawingml/chart", Local: "leaderLines"}:
if m.Choice == nil {
m.Choice = NewCT_DLblsChoice()
}
if err := d.DecodeElement(&m.Choice.LeaderLines, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/drawingml/2006/chart", Local: "extLst"},
xml.Name{Space: "http://purl.oclc.org/ooxml/drawingml/chart", Local: "extLst"}:
m.ExtLst = NewCT_ExtensionList()
if err := d.DecodeElement(m.ExtLst, &el); err != nil {
return err
}
default:
unioffice.Log("skipping unsupported element on CT_DLbls %v", el.Name)
if err := d.Skip(); err != nil {
return err
}
}
case xml.EndElement:
break lCT_DLbls
case xml.CharData:
}
}
return nil
}
// Validate validates the CT_DLbls and its children
func (m *CT_DLbls) Validate() error {
return m.ValidateWithPath("CT_DLbls")
}
// ValidateWithPath validates the CT_DLbls and its children, prefixing error messages with path
func (m *CT_DLbls) ValidateWithPath(path string) error {
for i, v := range m.DLbl {
if err := v.ValidateWithPath(fmt.Sprintf("%s/DLbl[%d]", path, i)); err != nil {
return err
}
}
if m.Choice != nil {
if err := m.Choice.ValidateWithPath(path + "/Choice"); err != nil {
return err
}
}
if m.ExtLst != nil {
if err := m.ExtLst.ValidateWithPath(path + "/ExtLst"); err != nil {
return err
}
}
return nil
}