// Copyright 2020 FoxyUtils ehf. All rights reserved. // // DO NOT EDIT: generated by unioffice ECMA-376 generator // // Use of this software package and source code is governed by the terms of the // UniDoc End User License Agreement (EULA) that is available at: // https://unidoc.io/eula/ // A trial license code for evaluation can be obtained at https://unidoc.io website. package chart import ( "encoding/xml" "github.com/unidoc/unioffice" ) type CT_LegendEntry struct { Idx *CT_UnsignedInt Choice *CT_LegendEntryChoice ExtLst *CT_ExtensionList } func NewCT_LegendEntry() *CT_LegendEntry { ret := &CT_LegendEntry{} ret.Idx = NewCT_UnsignedInt() return ret } func (m *CT_LegendEntry) MarshalXML(e *xml.Encoder, start xml.StartElement) error { e.EncodeToken(start) seidx := xml.StartElement{Name: xml.Name{Local: "c:idx"}} e.EncodeElement(m.Idx, seidx) 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_LegendEntry) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error { // initialize to default m.Idx = NewCT_UnsignedInt() lCT_LegendEntry: 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: "idx"}, xml.Name{Space: "http://purl.oclc.org/ooxml/drawingml/chart", Local: "idx"}: if err := d.DecodeElement(m.Idx, &el); err != nil { return err } 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_LegendEntryChoice() } if err := d.DecodeElement(&m.Choice.Delete, &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_LegendEntryChoice() } if err := d.DecodeElement(&m.Choice.TxPr, &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_LegendEntry %v", el.Name) if err := d.Skip(); err != nil { return err } } case xml.EndElement: break lCT_LegendEntry case xml.CharData: } } return nil } // Validate validates the CT_LegendEntry and its children func (m *CT_LegendEntry) Validate() error { return m.ValidateWithPath("CT_LegendEntry") } // ValidateWithPath validates the CT_LegendEntry and its children, prefixing error messages with path func (m *CT_LegendEntry) ValidateWithPath(path string) error { if err := m.Idx.ValidateWithPath(path + "/Idx"); 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 }